:root {
	--bg-start: #c1fd3b;
	--bg-end: #93d500;
	--text-dark: #1b1b1b;
	--pill-bg: #453bfd;
	--card-bg: #ffffff;
	--gap: 24px;
}
/* ---------- reset ---------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,
body {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: Inter, system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
	/* background: #000; */
	color: #fff;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
li {
	list-style: none;
}
/* ---------- header ---------- */
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 64px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
}
.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 1300;
}
.logo img {
	width: 42px;
	height: 42px;
	display: block;
}
.logo .brand {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.2px;
}

/* nav row */
nav.nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
nav.nav ul {
	display: flex;
	gap: 22px;
	align-items: center;
}
nav.nav li {
	position: relative;
	list-style: none;
}
nav.nav a {
	padding: 6px 0;
	display: inline-block;
	transition: color 0.18s ease, transform 0.18s ease;
}
nav.nav a:hover {
	color: #cfcfcf;
	transform: translateY(-2px);
}

/* has dropdown marker for JS */
.has-dropdown {
	cursor: pointer;
}

/* dropdown panel (initially hidden) */
.dropdown-panel {
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	background: rgba(6, 6, 6, 0.98);
	border-radius: 10px;
	padding: 10px 8px;
	min-width: 220px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px) scale(0.98);
	transition: opacity 0.26s cubic-bezier(0.2, 0.9, 0.2, 1),
		transform 0.26s cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0.26s;
	pointer-events: none;
	display: flex;
	flex-direction: column;
}
.dropdown-panel a {
	display: block;
	padding: 9px 14px;
	border-radius: 8px;
	white-space: nowrap;
	transition: background 0.15s, transform 0.15s;
}
.dropdown-panel a:hover {
	background: rgba(255, 255, 255, 0.04);
	transform: translateX(6px);
}

/* when opened (class toggled by JS) */
.dropdown-open .dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* header-right: search + actions */
.header-right {
	display: flex;
	align-items: center;
	gap: 18px;
}
.action-btn {
	border: 1px solid #fff;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 14px;
	background: transparent;
	transition: background 0.18s, color 0.18s, transform 0.12s;
}
.action-btn:hover {
	background: #fff;
	color: #000;
	transform: translateY(-2px);
}

/* Search expand wrapper */
.search-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	background: none;
}
.search-btn {
	cursor: pointer;
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	background: none;
	border: none;
}
.search-input {
	width: 0;
	opacity: 0;
	padding: 8px 12px;
	border-radius: 24px;
	border: none;
	outline: none;
	transform-origin: left center;
	transition: width 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.2s;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 14px;
}
.search-wrap.active .search-input {
	width: 220px;
	opacity: 1;
	/* bounce animation on open */
	animation: searchBounce 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes searchBounce {
	0% {
		transform: translateY(-6px) scale(0.98);
	}
	60% {
		transform: translateY(2px) scale(1.02);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

/* ---------- swiper + slide ---------- */
.swiper {
	height: 100vh;
	margin-top: -84px;
}
.swiper-slide {
	background-size: cover;
	background-position: center;
	position: relative;
}
.slide-content {
	position: absolute;
	left: 50%;
	bottom: 28%;
	transform: translateX(-50%);
	max-width: 720px;
	text-align: center;
}

.slide-title {
	font-size: 72px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px;
}
.slide-description {
	line-height: 1;
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px;
}
.slide-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #000;
	padding: 14px 26px;
	font-size: 20px;
	border: 0;
	cursor: pointer;
	transition: all 0.22s ease;
}
.slide-cta svg {
	width: 20px;
	height: 20px;
}
.slide-cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ---------- mobile menu overlay (full screen) ---------- */
.mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(4, 4, 4, 0.98);
	z-index: 1250;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s, visibility 0.28s;
}
.mobile-overlay.show {
	opacity: 1;
	visibility: visible;
}
.mobile-overlay .item {
	font-size: 22px;
	text-transform: uppercase;
	padding: 12px 8px;
}
.mobile-overlay .actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
}
.mobile-overlay .actions a {
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid #fff;
	text-align: center;
}

/* ensure logo remains visible outside overlay (as requested) */
.mobile-overlay .logo-outside {
	position: fixed;
	left: 18px;
	top: 14px;
	z-index: 1300;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Mobile close button */
.mobile-close-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1300;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-close-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

.mobile-close-btn svg {
	width: 24px;
	height: 24px;
}

/* ---------- responsive ---------- */
@media (max-width: 1114px) {
	nav.nav {
		display: none;
	}
	.header-right {
		display: none;
	}
	.hamburger {
		display: flex !important;
	}
}

@media (max-width: 1024px) {
	.slide-title {
		font-size: 50px;
	}
}
@media (max-width: 768px) {
	.slide-title {
		font-size: 36px;
	}
	.slide-cta {
		font-size: 18px;
		padding: 12px 20px;
	}

	/* Mobile menu improvements */
	.mobile-overlay {
		padding: 60px 20px 40px;
	}

	.mobile-overlay .item {
		font-size: 20px;
		padding: 10px 8px;
	}

	.mobile-close-btn {
		top: 15px;
		right: 15px;
	}

	.mobile-overlay .logo-outside {
		left: 15px;
		top: 10px;
	}
}

/* hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1300;
}
.hamburger span {
	width: 26px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	transition: transform 0.18s, opacity 0.18s;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* small UX nicety: focus outline */
a:focus,
button:focus,
input:focus {
	outline: 2px solid rgba(255, 255, 255, 0.12);
	outline-offset: 2px;
}

/* first section start */
.gc-section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.gc-row {
	display: flex;
	width: 100%;
	height: auto;
}

.gc-row.reverse {
	flex-direction: row-reverse;
}

.gc-image,
.gc-content {
	flex: 1;
	width: 50%;
}

.gc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ✅ Text Side */
.gc-content {
	display: flex;
	align-items: center;
	background-color: #f0f0f0;
}

.gc-inner {
	padding: 80px;
	max-width: 600px;
}

.gc-content h2 {
	font-family: "Times New Roman", serif;
	font-size: 38px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
	line-height: 1.2;
}

.gc-content p {
	font-size: 20px;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1.6;
	margin-bottom: 20px;
}

.gc-link {
	display: inline-flex;
	gap: 8px;
	font-size: 18px;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
}

.gc-link .arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}

.gc-link:hover .arrow {
	transform: translateX(5px);
}

.gc-link:hover {
	color: #555;
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
	.gc-row {
		flex-direction: column;
	}

	.gc-image,
	.gc-content {
		width: 100%;
		justify-content: center;
	}

	.gc-inner {
		padding: 40px 30px;
		text-align: center;
	}

	.gc-content h2 {
		font-size: 30px;
	}

	.gc-content p {
		font-size: 18px;
	}
}

@media (max-width: 600px) {
	.gc-inner {
		padding: 30px 20px;
	}

	.gc-content h2 {
		font-size: 26px;
	}

	.gc-content p {
		font-size: 16px;
	}
}

/* first section end */

/* blog and article section start */
.blogs-section {
	background: linear-gradient(90deg, #c1fd3b 0%, #93d500 100%);
	width: 100%;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.blogs-container {
	display: flex;
	width: 100%;
	padding: 80px 0;
	gap: 60px;
}

/* Left Side - Title and Button */
.blogs-left {
	flex: 1;
	padding-left: 80px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.blogs-title {
	font-size: 40px;
	font-weight: 700;
	color: #1b1b1b;
	line-height: 1.2;
	margin: 0;
}

.blogs-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	color: #000000;
	padding: 16px 32px;
	border: none;
	border-radius: 0;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
}

.blogs-button:hover {
	background: #000;
	color: white;
}

.blogs-button .button-arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.blogs-button:hover .button-arrow {
	transform: translateX(5px);
}

/* Right Side - Slider */
.blogs-right {
	flex: 2;
	position: relative;
	overflow: hidden;
}

.blogs-swiper {
	width: 100%;
	height: 480px;
}

.blogs-swiper .swiper-slide {
	width: 300px;
	height: 100%;
}

/* Blog Card */
.blog-card {
	display: block;
	background: white;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-thumbnail {
	width: 100%;
	height: 436px;
	overflow: hidden;
}

.blog-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
	transform: scale(1.05);
}

.blog-category {
	background: #453bfd;
	color: white;
	font-size: 20px;
	font-weight: 400;
	padding: 8px 16px;
	margin: 16px 16px 0 16px;
	border-radius: 6px;
	width: fit-content;
}

.blog-title {
	font-size: 18px;
	font-weight: 600;
	color: #1b1b1b;
	margin: 12px 16px 16px 16px;
	line-height: 1.4;
	flex-grow: 1;
}

/* Navigation Arrows */
.blogs-navigation {
	display: flex;
	gap: 12px;
	margin-top: 30px;
	justify-content: flex-end;
	padding-right: 20px;
}

.blogs-nav-btn {
	width: 50px;
	height: 50px;
	border-radius: 100px;
	border: 2px solid white;
	background: transparent;
	color: #1b1b1b;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.blogs-nav-btn svg {
	width: 20px;
	height: 20px;
}

.blogs-nav-btn:hover {
	background: #1b1b1b;
	color: #c1fd3b;
	transform: translateY(-2px);
}

.blogs-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.blogs-nav-btn:disabled:hover {
	transform: none;
	background: transparent;
	color: #1b1b1b;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.blogs-container {
		gap: 40px;
		padding: 60px 40px;
	}

	.blogs-left {
		padding-left: 40px;
	}

	.blogs-swiper .swiper-slide {
		width: 280px;
	}
}

@media (max-width: 992px) {
	.blogs-container {
		flex-direction: column;
		gap: 40px;
		padding: 60px 30px;
	}

	.blogs-left {
		padding-left: 0;
		text-align: center;
		align-items: center;
	}

	.blogs-title {
		font-size: 36px;
	}

	.blogs-swiper .swiper-slide {
		width: 250px;
	}

	.blogs-navigation {
		justify-content: center;
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.blogs-container {
		padding: 40px 20px;
		gap: 30px;
	}

	.blogs-title {
		font-size: 32px;
	}

	.blogs-button {
		padding: 14px 28px;
		font-size: 16px;
	}

	.blogs-swiper {
		height: 350px;
	}

	.blogs-swiper .swiper-slide {
		width: 220px;
	}

	.blog-thumbnail {
		height: 160px;
	}

	.blog-category {
		font-size: 18px;
		padding: 6px 12px;
		margin: 12px 12px 0 12px;
	}

	.blog-title {
		font-size: 16px;
		margin: 10px 12px 12px 12px;
	}
}

@media (max-width: 480px) {
	.blogs-title {
		font-size: 28px;
	}

	.blogs-swiper .swiper-slide {
		width: 200px;
	}

	.blog-thumbnail {
		height: 200px;
	}

	.blogs-nav-btn {
		width: 45px;
		height: 45px;
	}

	.blogs-nav-btn svg {
		width: 18px;
		height: 18px;
	}
}

/* blog and article section end */
/* cta section start */
.cta-section {
	padding: 100px 0;
	background: #f5f5f5;
}

.cta-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
	gap: 60px;
}

.cta-left {
	flex: 1;
}

.cta-title {
	font-size: 42px;
	color: #1b1b1b;
	font-weight: 700;
	margin-bottom: 24px;
	line-height: 1.2;
}

.cta-desc {
	font-size: 18px;
	color: #333;
	opacity: 0.8;
	margin-bottom: 30px;
	max-width: 500px;
}

.cta-btn {
	background: #4a71fd;
	color: #fff;
	font-size: 18px;
	border: none;
	padding: 14px 36px;
	cursor: pointer;
	transition: all 0.3s ease;
}
button.blogs-button.cta-btn:hover {
	background: #3b5ee8 !important;
}

.cta-right {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
}

.cta-img-main {
	position: relative;
	width: 100%;
	max-width: 480px;
}

.cta-img-main img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	object-fit: cover;
}

.floating-img {
	position: absolute;
	width: 180px !important;
	height: 120px !important;
	border-radius: 12px;
	object-fit: cover;
	opacity: 0;
	transform: scale(0.8);
}

.floating1 {
	top: -40px;
	left: -60px;
}
.floating2 {
	bottom: -40px;
	right: -60px;
}

/* Responsive */
@media (max-width: 1024px) {
	.cta-container {
		flex-direction: column;
		text-align: center;
		padding: 0 40px;
	}
	.cta-right {
		margin-top: 50px;
	}
	.floating1,
	.floating2 {
		display: none;
	}
}

@media (max-width: 600px) {
	.cta-title {
		font-size: 28px;
	}
	.cta-desc {
		font-size: 16px;
	}
}

/* cta section end */

/* forensic section start */
.forensic-section {
	background: #1b1b1b;
	color: #ffffff;
	width: 100%;
	padding: 0;
	margin: 0;
}

.forensic-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.forensic-img-side {
	flex: 0 0 60%;
	position: relative;
	overflow: hidden;
}

.forensic-img-side img {
	width: 100%;
	height: 100%;
	max-width: 930px;
	max-height: 720px;
	object-fit: cover;
	display: block;
}

.forensic-content-side {
	flex: 0 0 40%;
	padding: 100px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.forensic-small-text {
	font-size: 14px;
	color: #bfbfbf;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
}

.forensic-title {
	font-size: 26px;
	color: #ffffff;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 40px;
}

.forensic-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.forensic-list li {
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.forensic-list li .arrow {
	display: inline-block;
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.forensic-list li:hover .arrow {
	transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
	.forensic-container {
		flex-direction: column;
	}

	.forensic-img-side,
	.forensic-content-side {
		flex: 0 0 100%;
	}

	.forensic-content-side {
		padding: 60px 40px;
		text-align: center;
	}

	.forensic-list li {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.forensic-title {
		font-size: 22px;
	}

	.forensic-content-side {
		padding: 40px 24px;
	}

	.forensic-list li {
		font-size: 16px;
	}
}

/* forensic section end */

/* career section start */
.career-section {
	width: 100%;
	background: #f5f5f5;
	padding: 80px 0;
	overflow: hidden;
}

.career-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.career-img-side {
	flex: 0 0 50%;
	position: relative;
}

.career-img-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(0.9);
	opacity: 0;
	transition: all 1s ease;
}

.career-content-side {
	flex: 0 0 50%;
	padding: 80px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease;
}

.career-title {
	font-size: 40px;
	font-weight: 700;
	color: #1b1b1b;
	line-height: 1.3;
	margin-bottom: 24px;
}

.career-subtitle {
	font-size: 18px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 40px;
}

.career-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.career-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border: 2px solid #1b1b1b;
	cursor: pointer;
	transition: all 0.3s ease;
}

.black-btn {
	background: #1b1b1b;
	color: #fff;
}

.white-btn {
	background: #fff;
	color: #1b1b1b;
}

.career-btn .arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}

.career-btn:hover .arrow {
	transform: translateX(6px);
}

.career-btn:hover {
	transform: translateY(-2px);
}

.white-btn:hover {
	background: #1b1b1b;
	color: #fff;
}

/* Scroll animation classes */
.career-section.visible .career-img-side img {
	transform: scale(1);
	opacity: 1;
}

.career-section.visible .career-content-side {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
	.career-container {
		flex-direction: column;
	}

	.career-img-side,
	.career-content-side {
		flex: 0 0 100%;
	}

	.career-content-side {
		padding: 60px 40px;
		text-align: center;
	}

	.career-buttons {
		justify-content: center;
	}

	.career-title {
		font-size: 32px;
	}

	.career-subtitle {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.career-content-side {
		padding: 40px 24px;
	}

	.career-title {
		font-size: 28px;
	}

	.career-subtitle {
		font-size: 15px;
	}

	.career-btn {
		width: 100%;
		justify-content: center;
	}
}

/* career section end */

/* contact us section start */
.contact-section {
	position: relative;
	background: url("../media/banner/Frame\ 48.png") center/cover no-repeat;
	color: white;
	padding: 50px 80px;
	overflow: hidden;
}
.contact-right-title,
.contact-left-title {
	font-family: "Times New Roman";
}
.contact-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.contact-container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-left,
.contact-right {
	flex: 1;
	min-width: 300px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease;
}

.contact-section.visible .contact-left,
.contact-section.visible .contact-right {
	opacity: 1;
	transform: translateY(0);
}

.contact-left-title {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 24px;
}

.contact-left-text {
	font-size: 18px;
	line-height: 1.6;
	color: #f5f5f5;
	max-width: 600px;
}

.contact-left-text .highlight {
	border-bottom: 2px solid #55e8ff;
}

.contact-follow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
	font-size: 18px;
	font-weight: 600;
	color: white;
}

.contact-right-title {
	font-size: 60px;
	font-weight: 700;
	text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
	.contact-section {
		padding: 120px 40px;
		text-align: center;
	}

	.contact-container {
		flex-direction: column;
		align-items: center;
	}

	.contact-right-title {
		text-align: center;
		margin-top: 40px;
	}

	.contact-left-title,
	.contact-right-title {
		font-size: 44px;
	}

	.contact-left-text {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.contact-section {
		padding: 100px 24px;
	}

	.contact-left-title,
	.contact-right-title {
		font-size: 36px;
	}

	.contact-left-text {
		font-size: 15px;
	}

	.contact-follow {
		flex-direction: column;
		gap: 8px;
	}
}

/* contact us section end */

/* faw section start */
.faq-section {
	background-color: #f9f9f9;
	padding: 100px 20px;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 60px;
	color: #1b1b1b;
	font-family: "Times New Roman", serif;
}

.faq-item {
	border-top: 1px solid #ddd;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 25px 0;
	font-size: 22px;
	text-align: left;
	font-weight: 500;
	color: #1b1b1b;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: #4a71fd;
}

.faq-chevron {
	font-size: 24px;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	opacity: 1;
	animation: fadeIn 0.4s ease;
}

.faq-answer p {
	margin: 0 0 25px 0;
	font-size: 18px;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1.6;
}

@keyframes fadeIn {
	from {
		transform: translateY(10px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.faq-title {
		font-size: 28px;
	}
	.faq-question {
		font-size: 18px;
	}
	.faq-answer p {
		font-size: 16px;
	}
}

/* faw section end */

/* footer start */
.site-footer {
	background-color: #00338d;
	color: #fff;
	padding: 80px 40px 40px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
	max-width: 1300px;
	margin: 0 auto;
}

/* Left Column */
.footer-left {
	flex: 1 1 350px;
	min-width: 300px;
}

.footer-logo {
	width: 160px;
	margin-bottom: 20px;
}

.subscribe-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.subscribe-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 25px;
}

.subscribe-form {
	padding: 20px;
	border-radius: 4px;
	max-width: 380px;
}

.email-label {
	display: block;
	font-size: 14px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.form-row {
	display: flex;
}

.form-row input {
	flex: 1;
	padding: 12px;
	border: none;
	outline: none;
	font-size: 14px;
	background-color: #022562;
	margin-right: 9px;
}

.form-row button {
	background-color: #fff;
	color: #000;
	font-weight: bold;
	border: none;
	padding: 12px 20px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.form-row button:hover {
	background-color: #55e8ff;
}

/* Right Column */
.footer-right {
	flex: 1 1 550px;
	min-width: 300px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px 30px;
	margin-bottom: 30px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 0.7;
}

/* Social Icons */
.footer-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.footer-socials a {
	font-size: 18px;
	color: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover {
	transform: translateY(-3px);
	opacity: 0.8;
}
@media (max-width: 768px) {
	.footer-socials {
		justify-content: center;
	}
	.footer-left,
	.footer-right {
		flex: unset;
	}
}

/* Divider & Bottom Text */
.footer-line {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin: 60px auto 30px;
	max-width: 1300px;
}

.footer-bottom {
	text-align: center;
	font-size: 14px;
	color: #fff;
	line-height: 1.5;
	max-width: 900px;
	margin: 0 auto;
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
	.site-footer {
		padding: 60px 20px;
	}

	.footer-container {
		flex-direction: column;
		align-items: center;
	}

	.footer-right,
	.footer-left {
		text-align: center;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}

	.form-row {
		flex-direction: column;
		gap: 10px;
	}

	.form-row button {
		width: 100%;
	}
}
.footer-col-1,
.footer-col-2,
.footer-col-3 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 768px) {
	.footer-col-1,
	.footer-col-2,
	.footer-col-3 {
		margin-top: 35px;
	}
}
/* footer end */


/* page 2 start */

/* hero section start */
.hero-section {
	position: relative;
	width: 100%;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	color: #fff;
	font-family: 'Poppins', sans-serif;
  }
  
  .hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
  }
  
  .hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .hero-content {
	position: relative;
	z-index: 2;
	padding: 0 8%;
	max-width: 600px;
  }
  
  .hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
  }
  
  .hero-link {
	display: inline-block;
	color: #fff;
	text-decoration: underline;
	font-size: 16px;
	margin-bottom: 20px;
  }
  
  .hero-learn-more {
	display: block;
	align-items: center;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
  }
  
  .hero-learn-more .arrow {
	display: inline-block;
	margin-left: 6px;
	transition: transform 0.3s ease;
  }
  
  .hero-learn-more:hover .arrow {
	transform: translateX(5px);
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
	.hero-content h1 {
	  font-size: 36px;
	}
	.hero-content {
	  padding: 0 6%;
	}
  }
  
  /* Mobile */
  @media (max-width: 768px) {
	.hero-section {
	  height: 60vh;
	  align-items: flex-end;
	}
	.hero-content {
	  padding: 0 5% 40px;
	  max-width: 90%;
	}
	.hero-content h1 {
	  font-size: 28px;
	}
	.hero-link,
	.hero-learn-more {
	  font-size: 14px;
	}
  }
  
/* hero section end */

.text-section {
	width: 100%;
	background-color: #fff;
	color: #1b1b1b;
	padding: 100px 8%;
	display: flex;
	justify-content: flex-start;
  }
  
  .text-container {
	max-width: 900px;
	line-height: 1.8;
	font-size: 18px;
  }
  
  .text-container p {
	margin-bottom: 25px;
  }
  
  .text-container p:last-child {
	margin-bottom: 0;
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
	.text-section {
	  padding: 80px 6%;
	}
	.text-container {
	  font-size: 17px;
	}
  }
  
  /* Mobile */
  @media (max-width: 768px) {
	.text-section {
	  padding: 60px 5%;
	}
	.text-container {
	  font-size: 16px;
	  line-height: 1.7;
	}
  }
  .help-section {
	width: 100%;
	background: #fff;
	color: #1b1b1b;
	padding: 100px 8%;
  }
  
  .help-header {
	margin-bottom: 60px;
  }
  
  .top-border {
	border-top: 2px solid #1b1b1b;
	width: 80px;
	margin-bottom: 20px;
  }
  
  .help-header h2 {
	font-size: 38px;
	font-weight: 700;
	font-family: "Times New Roman", serif;
  }
  
  .help-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
  }
  
  .help-box {
	padding: 20px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .help-box:hover {
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .help-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
  }
  
  .help-title h3 {
	font-size: 20px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
  }
  
  .chevron {
	transition: transform 0.3s ease;
  }
  
  .help-box:hover .chevron {
	transform: translateX(5px);
  }
  
  .help-box p {
	font-size: 16px;
	color: rgba(27, 27, 27, 0.8);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* show max 3 lines */
	-webkit-box-orient: vertical;
	line-height: 1.6;
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
	.help-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 25px;
	}
  
	.help-header h2 {
	  font-size: 32px;
	}
  }
  
  /* Mobile */
  @media (max-width: 768px) {
	.help-grid {
	  grid-template-columns: 1fr;
	  gap: 20px;
	}
  
	.help-header h2 {
	  font-size: 28px;
	}
  
	.help-section {
	  padding: 70px 6%;
	}
  }
  .image-text-section {
	width: 100%;
	padding: 100px 8%;
	background: #fff;
  }
  
  .image-text-box {
	display: flex;
	align-items: center;
	gap: 40px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .image-text-box:hover {
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
  }
  
  .image-side {
	flex: 1;
	overflow: hidden;
  }
  
  .image-side img {
	width: 100%;
	height: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: 6px;
	transition: transform 0.4s ease;
  }
  
  .image-text-box:hover .image-side img {
	transform: scale(1.03);
  }
  
  .text-side {
	flex: 1.2;
  }
  
  .text-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 14px;
  }
  
  .text-header h3 {
	font-size: 22px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	color: #1b1b1b;
  }
  
  .chevron {
	transition: transform 0.3s ease;
  }
  
  .image-text-box:hover .chevron {
	transform: translateX(5px);
  }
  
  .text-side p {
	font-size: 16px;
	color: rgba(27, 27, 27, 0.8);
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* limit to 3 lines */
	-webkit-box-orient: vertical;
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
	.image-text-box {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 25px;
	}
  
	.text-header h3 {
	  font-size: 20px;
	}
  }
  
  /* Mobile */
  @media (max-width: 768px) {
	.image-text-section {
	  padding: 70px 6%;
	}
  
	.image-text-box {
	  flex-direction: column;
	  gap: 20px;
	}
  
	.image-side img {
	  max-height: 260px;
	  border-radius: 4px;
	}
  
	.text-header h3 {
	  font-size: 18px;
	}
  
	.text-side p {
	  font-size: 15px;
	}
  }
  .image-text-section {
	padding: 120px 8%;
  }
  
  .image-side img {
	height: 100%;
	min-height: 381px;
	max-height: 400px;
	object-fit: cover;
  }
  .keep-exploring {
	padding: 100px 8%;
	background: #fff;
	border-top: 1px solid #e5e5e5;
  }
  
  .keep-exploring h2 {
	font-size: 36px;
	font-weight: 600;
	color: #1b1b1b;
	margin-bottom: 40px;
	font-family: 'Times New Roman', serif;
  }
  
  .explore-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px 40px;
  }
  
  .explore-links a {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: #1b1b1b;
	text-decoration: none;
	position: relative;
	transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .explore-links .chevron {
	margin-right: 12px;
	transition: color 0.3s ease;
	flex-shrink: 0;
  }
  
  .explore-links a:hover {
	transform: translateX(6px);
	color: #00338d;
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
	.explore-links {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 20px 30px;
	}
  
	.keep-exploring h2 {
	  font-size: 30px;
	  margin-bottom: 30px;
	}
  }
  
  /* Mobile */
  @media (max-width: 768px) {
	.explore-links {
	  grid-template-columns: 1fr;
	  gap: 18px;
	}
  
	.keep-exploring {
	  padding: 70px 6%;
	}
  
	.keep-exploring h2 {
	  font-size: 26px;
	}
  
	.explore-links a {
	  font-size: 16px;
	}
  }
  .contact2 {
	background-color: #f0f0f0;
	padding: 60px 20px;
  }
  
  .contact2 .container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
  }
  
  .contact2 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #222;
	flex: 1 1 60%;
	margin: 0;
  }
  
  .contact2 .contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #000;
	color: #fff;
	border: none;
	padding: 14px 28px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 6px;
  }
  
  .contact2 .contact-btn:hover {
	background-color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .contact2 .email-icon {
	width: 22px;
	height: 22px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.contact2 .container {
	  flex-direction: column;
	  text-align: center;
	}
  
	.contact2 h2 {
	  flex: unset;
	}
  
	.contact2 .contact-btn {
	  width: 100%;
	  justify-content: center;
	}
  }
/* Fade-in base style */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
  }
  
  /* When visible */
  .fade-in.visible {
	opacity: 1;
	transform: translateY(0);
  }
  .fade-in:nth-child(1) { transition-delay: 0s; }
  .fade-in:nth-child(2) { transition-delay: 0.1s; }
  .fade-in:nth-child(3) { transition-delay: 0.2s; }
  .fade-in:nth-child(4) { transition-delay: 0.3s; }
  .fade-in:nth-child(5) { transition-delay: 0.4s; }
  .fade-in:nth-child(6) { transition-delay: 0.5s; }
		
/* page 2 end */


/* about us page start */
/* HERO */
.about-hero {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
  }
  .about-hero .hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .about-hero .hero-content {
	color: #fff;
	z-index: 2;
	background: rgba(0,0,0,0.4);
	padding: 20px 30px;
	border-radius: 10px;
  }
  .about-hero h1 { font-size: 48px; margin-bottom: 10px; }
  .about-hero p { font-size: 18px; }
  
  /* MISSION & VISION */
  .mission-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 60px 10%;
  }
  .mission-box {
	color: #000;
	flex: 1 1 45%;
	background: #f7f7f7;
	padding: 30px;
	border-radius: 6px;
	transition: all 0.3s ease;
  }
  .mission-box:hover {
	border-radius: 12px;
  }
  
  /* OUR STORY */
  .our-story {
	padding: 60px 10%;
	text-align: center;
  }
  .our-story h2 {
	font-size: 32px;
	margin-bottom: 20px;
  }
  .our-story p {
	font-size: 18px;
	line-height: 1.7;
	max-width: 900px;
	margin: auto;
  }
  
  /* TEAM */
  .our-team {
	padding: 60px 10%;
	background: #f9f9f9;
	text-align: center;
  }
  .our-team h2
  {
	color: #000;
    margin: 24px 0px;
  }
  .core-values h2{
	margin: 24px 0px;
  }
  .team-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
  }
  .core-values h2,
  .our-story{
	color: #000;
  }
  .team-member {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	width: 250px;
	transition: all 0.3s ease;
  }
  .team-member img {
	width: 100%;
	height: 250px;
	object-fit: cover;
  }
  .team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  }
  .team-member h3 {
	margin: 15px 0 5px;
	font-size: 18px;
  }
  .team-member p {
	font-size: 14px;
	color: #555;
	margin-bottom: 15px;
  }
  
  /* CORE VALUES */
  .core-values {
	padding: 60px 10%;
	text-align: center;
  }
  .values-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
  }
  .value-box {
	color: #000;
	flex: 1 1 250px;
	padding: 20px;
	background: #f0f0f0;
	border-radius: 10px;
	transition: all 0.3s ease;
  }
  .value-box:hover {
	color: #fff;
	background: #00338D;
	color: #fff;
	transform: translateY(-5px);
  }
  
  /* CONTACT CTA */
  .contact-cta {
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 10%;
	flex-wrap: wrap;
  }
  .contact-btn {
	background: #000;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
  }
  .contact-btn:hover {
	background: #fff;
	color: #000;
  }
  .contact-text{
	color: #000;
  }
  /* RESPONSIVE */
  @media (max-width: 768px) {
	.mission-container,
	.values-container,
	.team-container {
	  flex-direction: column;
	  align-items: center;
	}
	.about-hero h1 { font-size: 32px; }
  }
  
/* about us page end */


/* contact us page start */
/* HERO */
.contact-hero {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
  }
  .contact-hero .hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .contact-hero .hero-content {
	z-index: 2;
	color: #fff;
	background: rgba(0,0,0,0.4);
	padding: 20px 40px;
	border-radius: 10px;
  }
  .contact-hero h1 {
	font-size: 48px;
	margin-bottom: 10px;
  }
  .contact-hero p {
	font-size: 18px;
  }
  
  /* FORM SECTION */
  .contact-form-section {
	background: #f9f9f9;
	padding: 60px 10%;
  }
  .form-container {
	max-width: 800px;
	margin: 0 auto;
  }
  .contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  .form-row.contact-form-row {
	display: flex;
	gap: 20px;
  }
  .contact-form input,
  .contact-form textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	outline: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
	border-color: #4A71FD;
  }
  .submit-btn {
	background: #4A71FD;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	align-self: flex-start;
	transition: all 0.3s ease;
  }
  .submit-btn:hover {
	background: #00338D;
  }
  
  /* CONTACT INFO */
  .contact-info {
	padding: 60px 10%;
	background: #fff;
  }
  .info-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
  }
  .info-box {
	flex: 1 1 220px;
  }
  .info-box h3 {
	font-size: 18px;
	margin-bottom: 8px;
	color: #00338D;
	display: flex;
    align-items: center;
    gap: 9px;
  }
  .info-box p {
	color: #555;
	font-size: 16px;
  }
  
  /* MAP */
  .map-section iframe {
	display: block;
	width: 100%;
	height: 400px;
  }
  .form-row.contact-form-row input{
	background-color:unset !important;
  }
  /* RESPONSIVE */
  @media (max-width: 768px) {
	.contact-hero h1 { font-size: 32px; }
	.form-row.contact-form-row { flex-direction: column; }
	.info-container { flex-direction: column; }
  }
  
/* contact us page end */


/* blog post page start */
.hero {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
}
.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.75);
}
.hero-content {
	position: absolute;
	bottom: 60px;
	left: 50%;
	color: #fff;
	transform: translatex(-50%);
	text-align: center;
}
.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 0.5rem;
}
.hero-content .meta {
	font-size: 1rem;
	opacity: 0.9;
}

/* ===== Layout ===== */
.layout {
	background-color: #fefefe;
	display: grid;
	grid-template-columns: 200px minmax(0, 700px) 200px;
	justify-content: center;
	gap: 3rem;
	padding: 3rem 2rem;
	color: #000;
}

/* ===== TOC ===== */
.toc {
	position: sticky;
	top: 100px;
	font-size: 0.9rem;
}
.toc h4 {
	margin-bottom: 0.6rem;
	font-weight: 600;
}
.toc ul {
	list-style: none;
}
.toc li {
	margin-bottom: 0.4rem;
}
.toc a {
	color: #555;
	transition: color 0.3s;
}
.toc a:hover {
	color: #000;
}

/* ===== Post ===== */
.post h2 {
	margin-top: 2rem;
	margin-bottom: 0.6rem;
	font-size: 1.4rem;
}
.post p {
	margin-bottom: 1.3rem;
	font-size: 1rem;
}

/* ===== Sidebar ===== */
.sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}
.sidebar h4 {
	font-size: 1rem;
	margin-bottom: 0.6rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.4rem;
}
.sidebar ul {
	list-style: none;
}
.sidebar li {
	margin-bottom: 0.4rem;
}
.sidebar a {
	color: #555;
}
.sidebar a:hover {
	color: #000;
}

/* ===== Comments ===== */
.comments {
	margin-top: 3rem;
}
.comment-form {
	margin-bottom: 1rem;
}
.comment-form textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 0.8rem;
	font-size: 0.95rem;
	resize: none;
}
.comment-form textarea:focus {
	outline: none;
	border-color: #aaa;
}
.comment-form button {
	background: #111;
	color: #fff;
	border: none;
	padding: 0.6rem 1.4rem;
	border-radius: 6px;
	margin-top: 0.5rem;
	cursor: pointer;
}
.comment-form button:hover {
	background: #333;
}

.comment {
	display: flex;
	margin-top: 1.5rem;
}
.avatar {
	background: #000;
	color: #fff;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.body {
	margin-left: 0.8rem;
	flex: 1;
}
.body p {
	margin: 0.4rem 0;
	color: #333;
}
.body span {
	color: #999;
	font-size: 0.8rem;
}
.reply-btn {
	background: none;
	border: none;
	color: #0056b3;
	cursor: pointer;
	font-size: 0.85rem;
	padding: 0;
}
.reply-btn:hover {
	text-decoration: underline;
}

.replies {
	margin-left: 2.5rem;
	border-left: 1px solid #eee;
	padding-left: 1rem;
	margin-top: 1rem;
}

/* ===== Fade-in ===== */
.fade-in {
	opacity: 0;
	transform: translateY(10px);
	animation: fadeIn 0.8s forwards;
}
@keyframes fadeIn {
	to {
		opacity: 1;
		transform: none;
	}
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
	.layout {
		grid-template-columns: 1fr;
		padding: 2rem 1.5rem;
	}
	.toc,
	.sidebar {
		display: none;
	}
	.hero-content {
		bottom: 40px;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
}
.related-posts {
	margin-top: 4rem;
  }
  .related-posts h3 {
	font-size: 24px;
	margin-bottom: 1.5rem;
  }
  .related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
  }
  .related-item {
	text-decoration: none;
	color: #333;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
  }
  .related-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .related-item img {
	width: 100%;
	height: 160px;
	object-fit: cover;
  }
  .related-item h4 {
	padding: 1rem;
	font-size: 18px;
  }
/* blog post page end */