/*
Theme Name: Chopra Raghav Brand Theme
Theme URI: https://chopraraghav.com
Author: Antigravity AI
Author URI: https://chopraraghav.com
Description: Premium state-of-the-art dark glassmorphic personal branding theme for Raghav Chopra, Founder & CEO of UnsaidTalks, Entrepreneur, and Mentor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chopraraghav
Tags: personal-branding, portfolio, dark-mode, custom-menu, custom-logo, post-formats, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

:root {
	--bg-dark: #07090e;         /* Deep space black */
	--bg-light: #0c0e16;        /* Sleek slate dark background */
	--bg-gray: #151824;         /* Premium glass card background */
	--bg-charcoal: #0a0b10;     /* Ultra dark block background */
	
	--primary: #6366f1;         /* Vibrant Neon Indigo */
	--primary-hover: #4f46e5;
	--accent-green: #10b981;    /* Emerald Green */
	--border-light: rgba(255, 255, 255, 0.07);
	--border-dark: rgba(255, 255, 255, 0.12);
	
	--text-primary: #f8fafc;    /* Slate 50 (soft white) */
	--text-secondary: #94a3b8;  /* Slate 400 (light gray) */
	--text-muted: #64748b;      /* Slate 500 (muted gray) */
	
	--font-headings: 'Instrument Sans', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	--ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
	--transition-fast: 0.2s var(--ease-standard);
	--transition-medium: 0.5s var(--ease-standard);
}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	background-color: var(--bg-light);
	color: var(--text-secondary);
	font-family: var(--font-body);
	margin: 0;
	padding: 0;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	color: var(--text-primary);
	font-weight: 700;
	margin-top: 0;
	letter-spacing: -0.02em;
}

a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--primary);
}

/* Page Animations */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s var(--ease-standard), transform 0.8s var(--ease-standard);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Header Styling */
header.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(12, 14, 22, 0.75);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-light);
	z-index: 1000;
	transition: background 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard), border-color 0.4s var(--ease-standard);
}

header.site-header.header-scrolled {
	background: rgba(12, 14, 22, 0.92) !important;
	border-color: rgba(255, 255, 255, 0.06);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: padding 0.4s var(--ease-standard);
}

header.site-header.header-scrolled .header-container {
	padding: 0.65rem 1.5rem;
}

.site-logo a {
	font-family: var(--font-headings);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.desktop-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
	align-items: center;
}

.desktop-menu li a {
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.9rem;
	transition: color var(--transition-fast), opacity var(--transition-fast);
}

.desktop-menu li a:hover {
	color: var(--primary);
	opacity: 1;
}

.btn-header-cta {
	background: var(--primary);
	color: #ffffff !important;
	padding: 0.6rem 1.4rem;
	border-radius: 100px;
	font-weight: 600;
	font-size: 0.9rem;
}

.btn-header-cta:hover {
	background: var(--primary-hover);
}

/* Mobile Nav Toggles */
.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1100;
	position: relative;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--text-primary);
	margin-bottom: 5px;
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger span:last-child {
	margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Panel */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: rgba(12, 14, 22, 0.98);
	backdrop-filter: blur(20px);
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: opacity 0.4s var(--ease-standard), transform 0.4s var(--ease-standard), visibility 0.4s var(--ease-standard);
}

.mobile-drawer.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mobile-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu li {
	margin: 0;
}

.mobile-menu li a {
	font-family: var(--font-headings);
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-primary);
	transition: color var(--transition-fast);
}

.mobile-menu li a:hover {
	color: var(--primary);
}

/* Hero Section (Classroom background + side columns) */
.hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 7rem 0 3rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
	z-index: 1;
}

.hero-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: flex-end;
	gap: 4rem;
}

.hero-left-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
}

.hero-badge-framer {
	background: color-mix(in srgb, var(--primary) 10%, transparent);
	color: var(--primary);
	border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
	padding: 0.45rem 1.2rem;
	border-radius: 100px;
	font-size: 0.82rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background-color: var(--accent-green);
	border-radius: 50%;
}

.hero-title-framer {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	line-height: 1.15;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.hero-right-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.15rem;
	line-height: 1.6;
}

.btn-email-me {
	background: var(--primary);
	color: #ffffff;
	padding: 0.7rem 1.8rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-block;
	transition: background var(--transition-fast);
}

.btn-email-me:hover {
	background: var(--primary-hover);
}

/* Sections General Layout */
section.sec-layout {
	padding: 6rem 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section-header-framer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
}

.section-title-framer {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.btn-all-blogs {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	padding: 0.5rem 1.2rem;
	border-radius: 100px;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--text-primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Blogs Grid Cards */
.blogs-grid-framer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.blog-card-framer {
	position: relative;
	height: 280px;
	border-radius: 24px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	border: 1px solid var(--border-light);
}

.blog-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
	z-index: 1;
}

.blog-card-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.blog-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	margin: 0;
}

.blog-card-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.blog-card-tag {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 500;
	padding: 0.25rem 0.6rem;
	border-radius: 100px;
}

/* Block Grid Layout (Founder / Testimonial / Projects count) */
.blocks-grid-framer {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 1.5rem;
}

.block-card-framer {
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 2.2rem;
	background: var(--bg-gray);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.block-card-framer.dark {
	background: var(--bg-charcoal);
	border: 1px solid var(--border-dark);
	color: rgba(255, 255, 255, 0.85);
}

.block-card-framer.dark h3, .block-card-framer.dark .testimonial-quote-framer {
	color: #ffffff;
}

.block-card-framer.gray {
	background: var(--bg-gray);
	align-items: center;
	justify-content: center;
	text-align: center;
}

.block-icon-framer {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
}

.block-title-framer {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
}

.block-desc-framer {
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.block-img-framer {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--border-light);
}

.testimonial-quote-framer {
	font-size: 1.15rem;
	line-height: 1.6;
	font-weight: 500;
	margin-bottom: 2rem;
}

.testimonial-profile-framer {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar-framer {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--border-dark);
}

.testimonial-name-framer {
	font-weight: 600;
	font-size: 0.9rem;
	color: #ffffff;
}

.testimonial-title-framer {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.stat-number-framer {
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.1;
}

.stat-label-framer {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-top: 6px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.stat-dot-framer {
	width: 8px;
	height: 8px;
	background-color: var(--primary);
	border-radius: 50%;
}

/* Columns Section (My Path wasn't straight) */
.columns-section-framer {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.col-left-label-framer {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: none;
}

.col-right-title-framer {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.25;
}

.three-column-cards-framer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.framer-story-card {
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 2.2rem;
	background: var(--bg-gray);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.framer-story-card.orange {
	background: var(--primary);
	border: none;
	color: #ffffff;
}

.framer-story-card.orange h3, .framer-story-card.orange .story-desc-framer {
	color: #ffffff;
}

.story-header-framer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.story-badge-framer {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.story-icon-box {
	font-size: 1.25rem;
}

.story-title-framer {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.story-desc-framer {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.story-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.story-tag-item {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	color: var(--text-primary);
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.35rem 0.7rem;
	border-radius: 100px;
}

.framer-story-card.orange .story-tag-item {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

/* Centralized Timeline (From Circuits to SaaS) */
.timeline-section-framer {
	background: var(--bg-charcoal);
	padding: 6rem 1.5rem;
	color: rgba(255, 255, 255, 0.85);
}

.timeline-title-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 5rem;
}

.timeline-title-row .section-title-framer {
	color: #ffffff;
	margin-top: 0.6rem;
}

.central-timeline-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.central-timeline-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border-dark);
}

.timeline-block-framer {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

.timeline-block-framer:last-child {
	margin-bottom: 0;
}

.timeline-number-node {
	position: absolute;
	top: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--primary);
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--bg-charcoal);
	z-index: 2;
}

.timeline-card-framer {
	position: relative;
	width: 40%;
	border: 1px solid var(--border-dark);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	padding: 2rem;
}

/* Alternate Left and Right columns */
.timeline-block-framer:nth-child(odd) {
	justify-content: flex-start;
}
.timeline-block-framer:nth-child(even) {
	justify-content: flex-end;
}

.timeline-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.timeline-card-desc {
	font-size: 0.85rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

/* FAQ Accordion */
.faq-section-framer {
	background: var(--bg-light);
	padding: 6rem 1.5rem;
}

.faq-layout-framer {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
}

.faq-left-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.faq-tag {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.faq-desc {
	font-size: 1.15rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.faq-accordion-framer {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.faq-item-framer {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	overflow: hidden;
}

.faq-trigger-framer {
	width: 100%;
	background: none;
	border: none;
	padding: 1.2rem 1.5rem;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
}

.faq-icon-framer {
	font-size: 1.15rem;
	transition: transform var(--transition-fast);
}

.faq-content-framer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
	padding: 0 1.5rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

.faq-item-framer.active .faq-content-framer {
	max-height: 250px;
	padding-bottom: 1.2rem;
}

.faq-item-framer.active .faq-icon-framer {
	transform: rotate(45deg);
}

/* Bottom Inbox / Form Section */
.bottom-inbox-section {
	background: var(--bg-light);
	padding: 0 1.5rem 6rem;
}

.inbox-card-framer {
	max-width: 1000px;
	margin: 0 auto;
	border: 1px solid var(--border-light);
	border-radius: 28px;
	background: var(--bg-gray);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
}

.inbox-left-framer {
	padding: 4rem 3rem;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.inbox-left-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
	z-index: 1;
}

.inbox-left-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
}

.inbox-left-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.inbox-avatar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 1.5rem;
}

.inbox-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.inbox-avatar-text {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.8);
}

.inbox-right-framer {
	padding: 4rem 3rem;
	background: var(--bg-gray);
}

.inbox-form-grid {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.inbox-input-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.inbox-input-group input, .inbox-input-group textarea {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 0.8rem 1rem;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 0.9rem;
	transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.inbox-input-group input:focus, .inbox-input-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: var(--bg-dark);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.btn-inbox-submit {
	background: var(--primary);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 0.8rem;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background var(--transition-fast);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-inbox-submit:hover {
	background: var(--primary-hover);
}

/* Footer Section */
footer.site-footer {
	background: #000000;
	padding: 5rem 1.5rem 2.5rem;
	color: rgba(255, 255, 255, 0.65);
}

footer.site-footer a {
	color: rgba(255, 255, 255, 0.65);
}

footer.site-footer a:hover {
	color: #ffffff;
}

.footer-bottom {
	border-top: 1px solid var(--border-dark);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
	.desktop-menu {
		display: none;
	}

	.hamburger {
		display: block;
	}

	.hero-wrap {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blogs-grid-framer {
		grid-template-columns: repeat(2, 1fr);
	}

	.blocks-grid-framer {
		grid-template-columns: 1fr;
	}

	.columns-section-framer {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.three-column-cards-framer {
		grid-template-columns: 1fr;
	}

	.faq-layout-framer {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.inbox-card-framer {
		grid-template-columns: 1fr;
	}

	.inbox-left-framer {
		height: 250px;
	}
}

@media (max-width: 768px) {
	.blogs-grid-framer {
		grid-template-columns: 1fr;
	}

	.timeline-card-framer {
		width: 80%;
	}
	
	.timeline-block-framer:nth-child(odd) {
		justify-content: flex-end;
	}

	.central-timeline-line {
		left: 10%;
	}

	.timeline-number-node {
		left: 10%;
		transform: translateX(-50%);
	}
}

/* ══════════ PREMIUM ANIMATIONS & GLOW STYLES ══════════ */

/* 1. Modern Page Loader */
#page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#page-loader.loaded {
	opacity: 0;
	visibility: hidden;
}
.loader-inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}
.loader-text {
	font-family: var(--font-headings);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	opacity: 0;
	transform: translateY(10px);
	animation: loaderTextFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}
.loader-line {
	width: 100px;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}
.loader-line::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: var(--primary);
	transform: translateX(-100%);
	animation: loaderProgress 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderProgress {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(0); }
}
@keyframes loaderTextFade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 2. Text Reveal Styles */
.word-wrapper {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	padding-bottom: 2px;
	margin-right: 0.25em;
}
.word-inner {
	display: inline-block;
	transform: translateY(105%);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.word-wrapper.active .word-inner {
	transform: translateY(0);
}

/* 3. Card Hover & Glow effects */
.blog-card-framer, .block-card-framer, .framer-story-card, .timeline-card-framer, .clean-card {
	position: relative;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow Card Mouse Tracker Background */
.glow-card {
	position: relative;
	overflow: hidden;
}
.glow-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
		color-mix(in srgb, var(--primary) 6%, transparent),
		transparent 40%
	);
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s var(--ease-standard);
}
.glow-card:hover::before {
	opacity: 1;
}

/* Micro-interaction Scale & Lift */
.blog-card-framer:hover, .block-card-framer:hover, .framer-story-card:hover, .clean-card:hover {
	transform: translateY(-8px) scale(1.015);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: color-mix(in srgb, var(--primary) 25%, transparent);
}

.blog-card-framer.reveal {
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s var(--ease-standard);
}

/* 4. Dynamic Timeline Scrolling Progress */
.central-timeline-line {
	background: linear-gradient(
		to bottom,
		var(--primary) var(--scroll-percent, 0%),
		var(--border-dark) var(--scroll-percent, 0%)
	) !important;
	transition: background 0.1s linear;
}

.timeline-block-framer .timeline-number-node {
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard);
}
.timeline-block-framer.active .timeline-number-node {
	background-color: var(--primary);
	transform: scale(1.2);
	box-shadow: 0 0 15px color-mix(in srgb, var(--primary) 60%, transparent);
}
.timeline-block-framer:not(.active) .timeline-number-node {
	background-color: #222;
	transform: scale(0.9);
}

/* 5. Magnetic Button Feel */
.btn-magnetic, .btn-email-me, .btn-header-cta, .btn-all-blogs, .btn-inbox-submit, .btn-primary {
	position: relative;
	transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color var(--transition-fast), box-shadow var(--transition-fast);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-magnetic:hover, .btn-email-me:hover, .btn-header-cta:hover, .btn-all-blogs:hover, .btn-inbox-submit:hover, .btn-primary:hover {
	box-shadow: 0 10px 20px color-mix(in srgb, var(--primary) 20%, transparent);
}

/* 6. About Page Snapping Carousel */
.about-carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 3.5rem 0;
	border-radius: 28px;
}
.about-carousel-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 1.5rem 0.5rem;
	cursor: grab;
	scroll-behavior: smooth;
}
.about-carousel-track::-webkit-scrollbar {
	display: none;
}
.about-carousel-track:active {
	cursor: grabbing;
}
.about-carousel-item {
	flex: 0 0 320px;
	height: 420px;
	border-radius: 24px;
	overflow: hidden;
	scroll-snap-align: center;
	position: relative;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
	transition: transform 0.6s var(--ease-standard);
}
.about-carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease-standard);
}
.about-carousel-item:hover img {
	transform: scale(1.06);
}
.about-carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	color: #ffffff;
}
.about-carousel-caption {
	font-family: var(--font-headings);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

/* Modern FAQ Accordion Transition Improvements */
.faq-item-framer {
	transition: border-color 0.4s var(--ease-standard), background-color 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard);
}
.faq-item-framer.active {
	background-color: #ffffff;
	border-color: color-mix(in srgb, var(--primary) 20%, transparent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.faq-content-framer {
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s var(--ease-standard);
	opacity: 0;
}
.faq-item-framer.active .faq-content-framer {
	max-height: 400px;
	opacity: 1;
}

/* Custom modern scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: #0d0f14;
}
::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--primary);
}


/* Homepage custom landing page styles */
.homepage-hero-section {
position: relative;
min-height: calc(100vh - 90px);
display: flex;
align-items: center;
padding: 120px 1.5rem 80px;
background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 55%, var(--bg-charcoal) 100%);
overflow: hidden;
}
.homepage-hero-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--primary) 20%, transparent), transparent 28%),
linear-gradient(45deg, color-mix(in srgb, var(--primary) 16%, transparent), transparent 45%);
pointer-events: none;
}
.homepage-hero-inner {
position: relative;
z-index: 1;
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.4fr 0.9fr;
gap: 3rem;
align-items: flex-end;
}
.homepage-hero-copy {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.homepage-badge {
display: inline-flex;
align-items: center;
padding: 0.65rem 1.2rem;
border-radius: 999px;
background: color-mix(in srgb, var(--primary) 14%, transparent);
border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
color: var(--text-primary);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.homepage-title {
font-size: clamp(2.4rem, 5vw, 4.6rem);
line-height: 1.04;
font-weight: 800;
color: #ffffff;
margin: 0;
}
.homepage-title span {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.homepage-lead {
max-width: 720px;
font-size: 1.03rem;
color: rgba(255, 255, 255, 0.84);
line-height: 1.8;
}
.homepage-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.homepage-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.95rem 2rem;
border-radius: 999px;
font-weight: 700;
text-decoration: none;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.homepage-button-primary {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
color: #ffffff;
}
.homepage-button-secondary {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.16);
color: #ffffff;
}
.homepage-button:hover {
transform: translateY(-2px);
box-shadow: 0 20px 45px color-mix(in srgb, var(--primary) 18%, transparent);
}
.homepage-button-secondary:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
.scroll-down-indicator {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.scroll-down-indicator:hover {
	transform: translateY(-3px);
	opacity: 0.95;
}
.scroll-down-indicator svg {
	transition: transform 0.3s ease;
}
.scroll-down-indicator:hover svg {
	transform: translateY(3px);
}
.interactive-card {
	transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.interactive-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 65px color-mix(in srgb, var(--primary) 16%, transparent);
	background: rgba(255, 255, 255, 0.08);
}
.stat-count {
	display: inline-block;
	min-width: 2.4rem;
}
.hero-title-framer .word-wrapper {
	display: inline-block;
	overflow: hidden;
}
.hero-title-framer .word-inner {
	display: inline-block;
	transform: translateY(110%);
	opacity: 0;
	transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.35s ease;
}
.hero-title-framer .word-wrapper.active .word-inner {
	transform: translateY(0);
	opacity: 1;
}
.homepage-hero-stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}
.hero-stat-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 22px;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.hero-stat-value {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
}
.hero-stat-label {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.7);
}
.homepage-section-header {
max-width: 920px;
margin: 0 auto 2.5rem;
text-align: center;
}
.section-overline {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1rem;
}
.homepage-section-header h2 {
font-size: clamp(2rem, 3vw, 3rem);
margin: 0.75rem auto 1rem;
color: #ffffff;
line-height: 1.2;
}
.section-copy {
max-width: 680px;
margin: 0 auto;
color: rgba(255, 255, 255, 0.72);
font-size: 1rem;
line-height: 1.75;
}
.homepage-journey-section,
.homepage-blogs-section,
.homepage-impact-section,
.homepage-contact-section {
padding: 6rem 1.5rem;
background: transparent;
}
.journey-steps-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.journey-step {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 26px;
padding: 2rem;
backdrop-filter: blur(14px);
}
.journey-step-number {
display: inline-flex;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--primary);
color: #ffffff;
font-weight: 700;
margin-bottom: 1.2rem;
}
.journey-step h3 {
font-size: 1.1rem;
margin-bottom: 0.85rem;
color: #ffffff;
}
.journey-step p {
color: rgba(255, 255, 255, 0.72);
line-height: 1.75;
margin: 0;
}
.blogs-preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto 2rem;
}
.blog-preview-card {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 24px;
padding: 1.8rem;
backdrop-filter: blur(14px);
transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.blog-preview-card:hover {
transform: translateY(-6px);
box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}
.blog-preview-link {
display: grid;
gap: 1rem;
}
.blog-preview-link h3 {
font-size: 1.2rem;
margin: 0;
color: #ffffff;
}
.blog-preview-link p {
margin: 0;
color: rgba(255, 255, 255, 0.7);
line-height: 1.8;
}
.blog-preview-cta {
font-weight: 700;
color: var(--primary);
}
.blog-preview-empty {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 24px;
padding: 2rem;
text-align: center;
color: rgba(255, 255, 255, 0.7);
}
.homepage-button-center {
display: inline-flex;
margin: 0 auto;
}
.impact-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.impact-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 24px;
padding: 2rem;
text-align: center;
}
.impact-card strong {
display: block;
font-size: 2.4rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 0.75rem;
}
.impact-card p {
margin: 0;
color: rgba(255, 255, 255, 0.75);
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.82rem;
}
.homepage-contact-section {
background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 8%, transparent) 0%, rgba(15, 23, 42, 0.95) 100%);
}
.contact-card {
max-width: 1000px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 28px;
padding: 3rem;
display: grid;
grid-template-columns: 1.4fr 0.9fr;
gap: 2rem;
backdrop-filter: blur(14px);
}
.contact-copy {
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact-copy h2 {
font-size: clamp(2rem, 3vw, 2.8rem);
color: #ffffff;
margin: 0;
}
.contact-copy p {
color: rgba(255, 255, 255, 0.78);
line-height: 1.8;
}
.contact-actions {
display: flex;
flex-direction: column;
gap: 1rem;
justify-content: center;
}
.contact-actions .homepage-button {
width: fit-content;
}
@media (max-width: 1024px) {
.homepage-hero-inner,
.contact-card {
grid-template-columns: 1fr;
}
.homepage-hero-stats,
.journey-steps-grid,
.blogs-preview-grid,
.impact-grid {
grid-template-columns: 1fr;
}
.contact-card {
padding: 2rem;
}
}
@media (max-width: 768px) {
.homepage-hero-section {
padding: 100px 1rem 60px;
}
.homepage-title {
font-size: 2.4rem;
}
.homepage-actions {
justify-content: center;
}
.section-copy,
.homepage-lead {
font-size: 0.98rem;
}
.hero-stat-card {
padding: 1.2rem;
}
}

/* ══════════ ADDITIONAL PREMIUM STYLES ══════════ */

/* 1. 3D Card Hover Tilts */
.tilt-card {
	transform-style: preserve-3d;
	perspective: 1000px;
	transition: transform 0.15s ease-out, box-shadow 0.5s var(--ease-standard);
}
.tilt-card-inner {
	transform: translateZ(20px);
	transition: transform 0.15s ease-out;
}

/* 2. Blogs Page 2-Column Grid Layout */
.blogs-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2rem;
	margin-bottom: 5rem;
}
.blogs-archive-card {
	border: 1px solid var(--border-light);
	border-radius: 28px;
	background: var(--bg-gray);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 380px;
	transition: transform 0.4s var(--ease-standard), border-color 0.4s var(--ease-standard), box-shadow 0.4s var(--ease-standard);
	text-decoration: none;
	overflow: hidden;
}
.blogs-archive-card:hover {
	transform: translateY(-8px);
	border-color: color-mix(in srgb, var(--primary) 25%, transparent);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.blogs-archive-card-top {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.blogs-archive-img-placeholder {
	width: 100%;
	height: 180px;
	background: var(--bg-gray);
	border-radius: 18px;
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--text-muted);
	position: relative;
	overflow: hidden;
	transition: transform 0.6s var(--ease-standard);
}
.blogs-archive-img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blogs-archive-card:hover .blogs-archive-img-placeholder img {
	transform: scale(1.05);
}
.blogs-archive-meta {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}
.blogs-archive-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
	margin: 0;
}
.blogs-archive-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0.5rem;
}
.blogs-archive-tag {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	color: var(--text-secondary);
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.3rem 0.7rem;
	border-radius: 100px;
}

/* 3. About Page Experience Timeline Row Update */
.exp-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 1.8rem 0;
	border-bottom: 1px solid var(--border-light);
	transition: padding var(--transition-fast);
}
.exp-row:last-child {
	border-bottom: none;
}
.exp-row:hover {
	padding-left: 0.5rem;
}
.exp-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.exp-logo {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.exp-title {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--text-primary);
	margin: 0;
}
.exp-subtitle {
	font-size: 0.88rem;
	color: var(--text-muted);
	margin-top: 3px;
}
.exp-right {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

/* 4. About Page Collage Carousel Drag Cursor Support */
.about-carousel-track.dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
}

/* 5. Contact Page Layout & Forms */
.contact-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 4rem;
	align-items: flex-start;
	margin-top: 2rem;
}
.contact-form-card {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	border-radius: 28px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.form-label {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.form-input {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	border-radius: 14px;
	padding: 0.95rem 1.2rem;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
	outline: none;
	border-color: var(--primary);
	background: var(--bg-dark);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.btn-submit {
	width: 100%;
	border: none;
	border-radius: 14px;
	padding: 1rem;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	background: var(--primary);
	color: #ffffff;
	transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-submit:hover {
	background: var(--primary-hover);
}
.contact-right-col {
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
}
.contact-img-card {
	width: 100%;
	height: 340px;
	border-radius: 28px;
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--text-muted);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.contact-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-sidebar-desc {
	font-family: var(--font-headings);
	font-size: 1.45rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--text-primary);
	margin: 0;
}
.btn-connect {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--primary);
	font-size: 1.1rem;
	border-bottom: 2px solid transparent;
	width: fit-content;
	transition: border-color var(--transition-fast), gap var(--transition-fast);
}
.btn-connect:hover {
	border-color: var(--primary);
	gap: 12px;
}

/* 6. Single Blog Template Specific Styles */
.single-blog-layout {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
}
.single-blog-back-btn {
	position: fixed;
	top: 9rem;
	left: 5rem;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--text-muted);
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	padding: 0.6rem 1.2rem;
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
	z-index: 10;
}
.single-blog-back-btn:hover {
	color: var(--text-primary);
	border-color: var(--text-primary);
	transform: translateX(-4px);
}
.single-blog-body {
	font-size: 1.12rem;
	line-height: 1.85;
	color: var(--text-secondary);
}
.single-blog-body h2 {
	font-size: 1.65rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}
.single-blog-signature {
	background: var(--bg-gray);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 1.8rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-top: 4rem;
	margin-bottom: 3rem;
}
.single-blog-more-works {
	border-top: 1px solid var(--border-light);
	padding-top: 4rem;
	margin-top: 4rem;
}
.single-blog-more-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--text-primary);
}
.single-blog-more-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

/* Additional Responsive Breakpoints */
@media (max-width: 1200px) {
	.single-blog-back-btn {
		position: static;
		margin-bottom: 2rem;
		display: inline-flex;
	}
}

@media (max-width: 991px) {
	.blogs-archive-grid {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.form-group-row {
		grid-template-columns: 1fr;
	}
	.contact-form-card {
		padding: 2rem;
	}
	.single-blog-more-grid {
		grid-template-columns: 1fr;
	}
}

/* ══════════ CRAZY ANIMATIONS & SITE-WIDE GLOW ORBS ══════════ */

/* Background Orbs */
.glowing-orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(130px);
	z-index: -2;
	pointer-events: none;
	opacity: 0.12;
	will-change: transform;
}
.glowing-orb-1 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	top: 0;
	left: 0;
}
.glowing-orb-2 {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, #0ea5e9 0%, transparent 75%);
	bottom: -150px;
	right: -150px;
	animation: floatOrbSlow 26s infinite alternate ease-in-out;
}
.glowing-orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #a855f7 0%, transparent 70%);
	top: 40%;
	left: 45%;
	opacity: 0.06;
	animation: floatOrbMedium 20s infinite alternate ease-in-out;
}

@keyframes floatOrbSlow {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
	100% {
		transform: translate(-100px, -50px) scale(1.2) rotate(180deg);
	}
}
@keyframes floatOrbMedium {
	0% {
		transform: translate(0, 0) scale(0.95);
	}
	100% {
		transform: translate(60px, -60px) scale(1.1);
	}
}

/* Scroll Reveal Directions */
.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.85s var(--ease-standard), transform 0.85s var(--ease-standard);
	will-change: opacity, transform;
}
.reveal-left.active {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.85s var(--ease-standard), transform 0.85s var(--ease-standard);
	will-change: opacity, transform;
}
.reveal-right.active {
	opacity: 1;
	transform: translateX(0);
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.94);
	transition: opacity 0.85s var(--ease-standard), transform 0.85s var(--ease-standard);
	will-change: opacity, transform;
}
.reveal-scale.active {
	opacity: 1;
	transform: scale(1);
}

/* Helper Placeholder Classes */
.placeholder-card-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(21, 24, 36, 0.7) 0%, rgba(12, 14, 22, 0.9) 100%);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	position: relative;
	padding: 2rem;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.contact-placeholder-card-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(21, 24, 36, 0.7) 0%, rgba(12, 14, 22, 0.9) 100%);
	border: 1px solid var(--border-light);
	border-radius: 28px;
	padding: 2rem;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.glowing-emoji-shield {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--primary) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 20%, transparent);
}

.glowing-emoji-shield-large {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--primary) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 20%, transparent);
}
