:root {
	--primary-color: #b88917;
	--secondary-color: #fff;
	--text-color: #333;
	--transition: all 0.3s ease;
	--container-width: 1200px;
	--container-padding: 5rem;
}

@media (max-width: 1200px) {
	:root {
		--container-padding: 3rem;
	}
}

@media (max-width: 768px) {
	:root {
		--container-padding: 2rem;
	}
}

/* Navigation styles */
.nav {
	width: 100%;
	padding: 1rem var(--container-padding);
	background-color: rgba(0, 0, 0, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__logo {
	display: flex;
	align-items: center;
}

.nav__logo-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.nav__items {
	display: flex;
	gap: 3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__link {
	color: var(--secondary-color);
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: var(--transition);
}

.nav__link:hover {
	color: #b88917;
}

.nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 5px;
}

.nav__hamburger span {
	display: block;
	width: 30px;
	height: 3px;
	background-color: var(--secondary-color);
	transition: var(--transition);
}

/* Hero section styles */
.header {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('./images/header.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.header__text-box {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 var(--container-padding);
}

.header__text {
	max-width: 900px;
	color: var(--secondary-color);
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.heading-primary {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.header__text p {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	font-weight: 500;
}

/* Blog section styles */
.blogs-part {
	background-color: var(--secondary-color);
	padding: 4rem 0;
}

.blogs-part .center {
	color: var(--text-color);
	margin-bottom: 3rem;
}

.blog-section-container {
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.view-all-blogs-text {
	text-align: center;
	margin-top: 3rem;
}

.view-all-blogs-text .btn--pink {
	background-color: #1b4a4a;
	color: var(--secondary-color);
	padding: 1rem 2rem;
	border-radius: 5px;
	text-decoration: none;
	transition: var(--transition);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

.view-all-blogs-text .btn--pink:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(120, 67, 233, 0.3);
}

.blog-item-description {
	color: #000;
	font-size: 1.5rem;
	text-align: left;
	padding: 0 1.5rem 1.5rem 1.5rem;
}

.blog-item-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
	background: lightgrey;
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition);
	text-decoration: none;
	color: #000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-item-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.post-item-content-container {
	text-align: left;
	padding: 0 1.5rem;
	color: #000;
}

.post-item-content-container h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.post-item-content-container p {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
}

.cardimage-item {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Remove read more button styles */
.read-more-btn {
	display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
	.blog-section-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.blog-section-container {
		grid-template-columns: 1fr;
	}
}

/* About section styles */
.about {
	background-color: rgba(27, 74, 74, 0.95);
	padding: 6rem var(--container-padding);
	color: var(--secondary-color);
}

.about__container {
	max-width: 1200px;
	margin: 0 auto;
}

.section__title {
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.section__title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #b88917;
}

.about__content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 4rem;
	align-items: start;
}

.about__image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.about__photo {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

.about__image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(120, 67, 233, 0.2), rgba(27, 74, 74, 0.2));
}

.about__name {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about__role {
	font-size: 1.8rem;
	color: #b88917;
	margin-bottom: 2rem;
}

.about__description p {
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.about__expertise,
.about__values,
.about__current {
	margin-bottom: 2rem;
}

.about h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #b88917;
}

.about__list {
	list-style: none;
	padding: 0;
}

.about__list li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.about__list li::before {
	content: "▹";
	position: absolute;
	left: 0;
	color: #b88917;
	font-size: 1.8rem;
}

.about__cta {
	display: flex;
	gap: 1rem;
	margin-top: 3rem;
}

.btn {
	font-size: 1.6rem;
	padding: 1.2rem 2.4rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.btn--primary {
	background: #b88917;
	color: var(--secondary-color);
}

.btn--secondary {
	border: 2px solid #b88917;
	color: var(--secondary-color);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 992px) {
	.about__content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about__image {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 768px) {
	.about {
		padding: 4rem var(--container-padding);
	}

	.section__title {
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}

	.about__name {
		font-size: 2.4rem;
	}

	.about__role {
		font-size: 1.6rem;
	}

	.about__description p,
	.about__list li {
		font-size: 1.4rem;
	}

	.about__cta {
		flex-direction: column;
	}
}

/* Contact section styles */
.contact {
	text-align: center;
	padding: 4rem var(--container-padding);
}

.contact h2 {
	color: var(--text-color);
	font-size: 3.5rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.contact__info {
	max-width: 800px;
	margin: 0 auto;
}

.contact p {
	color: var(--text-color);
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.contact .btn {
	display: inline-block;
	padding: 1rem 2rem;
	margin: 0.5rem;
	text-decoration: none;
	border-radius: 5px;
	transition: var(--transition);
	color: var(--text-color);
	border: 2px solid var(--text-color);
}

.contact .btn i {
	margin-right: 0.5rem;
	color: var(--text-color);
}

.contact .btn:hover {
	background-color: var(--text-color);
	color: var(--secondary-color);
}

.contact .btn:hover i {
	color: gray;
}

/* Skills section styles */
.skills {
	background-color: #1b4a4a;
	padding: 4rem 0;
}

.skills .center {
	color: #fff;
	margin-bottom: 3rem;
}

.skills_box {
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	max-width: 1400px;
	margin: 0 auto;
	background-color: #1b4a4a;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.skills_grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
	justify-content: center;
	align-items: center;
}

.skills_grid i {
	font-size: 4.5rem;
	transition: var(--transition);
	color: var(--secondary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.skills_grid i:hover {
	transform: translateY(-5px);
}

/* Tablet and smaller desktop */
@media screen and (max-width: 1200px) {
	.skills_grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

/* Mobile */
@media screen and (max-width: 768px) {
	.skills_box {
		gap: 3rem;
	}
	
	.skills_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.skills_grid i {
		font-size: 3.5rem;
	}
}

/* Very small screens */
@media screen and (max-width: 480px) {
	.skills_grid {
		gap: 1rem;
	}
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.nav__hamburger {
		display: flex;
	}

	.nav__items {
		position: fixed;
		top: 73px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 73px);
		background-color: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2rem;
		transition: var(--transition);
	}

	.nav__items.active {
		left: 0;
	}

	.heading-primary {
		font-size: 2.8rem;
	}

	.header__text p {
		font-size: 1.2rem;
	}
}

a.read-more-btn {
	font-size: 14px;
	color: #a6a6a6;
	padding: 0;
	cursor: pointer;
}

a.read-more-btn:hover {
	color: gray;
}

@media screen and (max-width: 992px) {
	.cardimage-item {
		height: 325px;
	}
}

@media screen and (min-width: 992px) {
	.cardimage-item {
		height: auto;
	}
}

.cardimage-item-2 {
	height: 186px;
	width: 100%;
}

.singer-image {
	height: 184px;
	width: 100%;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.cardimage-item-2 {
		height: 186px;
		width: 100%;
	}

	.singer-image {
		height: 184px;
		width: 100%;
	}
}

@media only screen and (min-width: 1200px) {
	.cardimage-item-2 {
		height: 226px;
		width: 100%;
	}

	.singer-image {
		height: 226px;
		width: 100%;
	}
}

/* spinner css start*/
.spinner {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.spinner div {
	animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}

.spinner div::after {
	content: ' ';
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0c0527;
	margin: -4px 0 0 -4px;
}

.spinner div:nth-child(1) {
	animation-delay: -0.036s;
}

.spinner div:nth-child(1)::after {
	top: 63px;
	left: 63px;
}

.spinner div:nth-child(2) {
	animation-delay: -0.072s;
}

.spinner div:nth-child(2)::after {
	top: 68px;
	left: 56px;
}

.spinner div:nth-child(3) {
	animation-delay: -0.108s;
}

.spinner div:nth-child(3)::after {
	top: 71px;
	left: 48px;
}

.spinner div:nth-child(4) {
	animation-delay: -0.144s;
}

.spinner div:nth-child(4)::after {
	top: 72px;
	left: 40px;
}

.spinner div:nth-child(5) {
	animation-delay: -0.18s;
}

.spinner div:nth-child(5)::after {
	top: 71px;
	left: 32px;
}

.spinner div:nth-child(6) {
	animation-delay: -0.216s;
}

.spinner div:nth-child(6)::after {
	top: 68px;
	left: 24px;
}

.spinner div:nth-child(7) {
	animation-delay: -0.252s;
}

.spinner div:nth-child(7)::after {
	top: 63px;
	left: 17px;
}

.spinner div:nth-child(8) {
	animation-delay: -0.288s;
}

.spinner div:nth-child(8)::after {
	top: 56px;
	left: 12px;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#allBlogsLink:hover {
	color: white !important;
}

@media (max-width: 768px) {
	#allBlogsLink {
		display: none;
	}
}

.btn--special {
	background: #b88917;
	color: #fff;
	margin-left: 15px;
	transition: all 0.3s;
	border: 1px solid #b88917;
}

.btn--special:hover {
	transform: translateY(-3px);
	background: #64490b;
	color: #fff;
}

/* Modern styling improvements */

/* Header */
.header {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/header-bg.jpg');
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* Navigation */
.nav {
	padding: 1rem 0;
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	z-index: 1000;
}

.nav__items {
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.nav__link {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.nav__link:hover {
	color: #b88917;
}

/* Buttons */
.btn {
	padding: 1rem 2rem;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
	margin: 0.5rem;
}

.btn--pink {
	background: #1b4a4a;
	color: var(--secondary-color);
}

.btn--pink:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
	padding: 5rem 0;
}

.center {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.center::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #fff;
}

/* About section */
.about__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about__photo {
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact section */
.contact {
	background: #f8f9fa;
}

.contact__info {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about__content {
		grid-template-columns: 1fr;
	}
	
	.nav__items {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
}

/* Add these styles to your existing about section CSS */
.about__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin: 2.5rem 0;
}

.about__column {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.about__column h4 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

.about__list li {
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

/* Update media query for mobile responsiveness */
@media screen and (max-width: 768px) {
	.about__columns {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}