:root {
	--primary-color: #7f56d9;
	--text-main: #101828;
	--text-muted: #667085;
	--bg-white: #ffffff;
	--bg-footer: #000000;
	--dark-color: #111111;
  --bs-body-font-family: 'Inter', sans-serif;
	--card-radius: 12px;
	--transition-main: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-main);
	-webkit-font-smoothing: antialiased;
}

/* Navbar Customization */
.navbar {
	padding: 1rem 0;
	border-bottom: 1px solid #f2f4f7;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.25rem;
}

.nav-link {
	color: var(--text-muted);
	font-weight: 500;
    display: inline;
	border-radius: 10px;
}

.nav-link:hover {
	background-color:var(--primary-color)!important;
	color: var(--bg-white);
}

.btn-login {
	background-color: var(--text-muted);
	color: white;
	border-radius: 8px;
	padding: 0.625rem 1.125rem;
	font-weight: 600;
  width: 140px;
  text-decoration: none;
  text-align: center;
}
.btn-login:hover{
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-signup {
	background-color: var(--text-main);
	color: white;
	border-radius: 8px;
	padding: 0.625rem 1.125rem;
	font-weight: 600;
  width: 140px;
}
.btn-signup:hover{
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* Hero Section */
.hero-container {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	margin-top: 2rem;
	background: #e5e5e5;
	min-height: 500px;
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 3rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
}

.hero-featured-tag {
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	display: block;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	max-width: 800px;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero-description {
	font-size: 1.125rem;
	opacity: 0.9;
	max-width: 600px;
	line-height: 1.5;
}

.hero-arrow {
	font-size: 2.5rem;
	position: absolute;
	right: 3rem;
	bottom: 3rem;
	color: white;
	text-decoration: none;
}

/* Blog Grid */
.blog-section {
	padding: 2rem 0;
}

.section-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 2rem;
}

.blog-card {
	border: none;
	background: none;
	margin-bottom: 3rem;
	transition: transform 0.2s;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.card-img-wrapper {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1.25rem;
	aspect-ratio: 16/10;
}

.author-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.author-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.author-name {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--text-main);
}

.post-date {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.btn-loading {
	background-color: var(--primary-color);
	color: white;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
}
.btn-loading:hover {
	background-color: var(--primary-color);
  color: white;
  transform: scale(1.10);
  transition: all 0.5s;
}
/* Footer */
footer {
	background-color: var(--bg-footer);
	color: #eaecf0;
}

.footer-col-title {
	color: #98a2b3;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}


.badge-new {
	background-color: #344054;
	color: white;
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 10px;
	margin-left: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 4rem;
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-logo {
	font-weight: 700;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 1.75rem;
	}

	.hero-overlay {
		padding: 1.5rem;
	}

	.hero-arrow {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}
}

/* ==================================================================== */


/* Hero Section */
.hero-section {
	padding: 4rem 0 2rem;
}

.hero-title {
	font-weight: 700;
	font-size: 2.25rem;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: 1.1rem;
	max-width: 800px;
	line-height: 1.6;
}

/* Featured Cards (Top) */
.card-top {
	border: none;
	border-radius: var(--card-radius);
	overflow: hidden;
	min-height: 280px;
	color: white;
	position: relative;
	transition: var(--transition-main);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-top:hover {
	transform: translateY(-5px);
}

.card-top .card-body {
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 1.5rem;
}

.card-top .card-label {
	text-transform: uppercase;
	font-size: 0.65rem;
	letter-spacing: 1px;
	font-weight: 700;
	opacity: 0.8;
	margin-bottom: 1rem;
}

.card-top .card-title {
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.card-top .btn-action {
	background: white;
	color: #333;
	border: none;
	padding: 0.5rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 4px;
	width: fit-content;
	margin-top: auto;
}



.card-top::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
	.hero-title {
		font-size: 1.75rem;
	}

	.nav-tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
}

/* ========================= AUTHOR ========================== */


/* Elegant Navigation */
.custom-nav {
	padding: 2.5rem 0;
	backdrop-filter: blur(10px);
}

.brand-logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: -1px;
}

.nav-meta {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--text-muted);
	text-transform: uppercase;
}

.nav-meta span {
	color: var(--accent-gold);
	margin-right: 8px;
}

/* Profile Grid & Cards */
.profile-card {
	position: relative;
	opacity: 0;
	/* For JS animation */
	transform: translateY(30px);
	transition: var(--transition-main);
}

.profile-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.img-wrapper {
	position: relative;
	width: 50%;
	aspect-ratio: 1 / 1.25;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	background-color: #ddd;
}

.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-main);
	filter: grayscale(10%) contrast(105%);
}

.profile-card:hover .img-wrapper img {
	transform: scale(1.08);
	filter: grayscale(0%);
}

.card-content {
	margin-top: 1.5rem;
	padding: 0 0.5rem;
}

.card-caption {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.3;
	color: var(--text-dark);
	border-left: 2px solid var(--accent-gold);
	padding-left: 1rem;
}

/* Decorative Background Element */
.deco-circle {
	position: fixed;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(197, 163, 134, 0.2);
	border-radius: 50%;
	top: -100px;
	right: -100px;
	z-index: -1;
}

/* Responsive Spacing */
@media (max-width: 768px) {
	.img-wrapper {
		border-radius: 30px;
	}

	.brand-logo {
		font-size: 1.4rem;
	}

	.card-caption {
		font-size: 0.95rem;
	}
}

/* social-buttons */
.social-buttons .btn {
  transition: all 0.3s ease;
  border-radius: 30px;
  padding: 10px 20px;
}

.social-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-buttons .btn i {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .social-buttons .btn {
    margin-bottom: 10px;
  }
}

/* contact us =============================================================*/
.serif-font {
	font-family: 'Playfair Display', serif;
}

/* Header Styling */
.contact-header {
	padding: 100px 0 60px;
	background-color: var(--primary-color);
	text-align: center;
}

.contact-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--bg-white);
}

/* Form Styling */
.contact-card {
	border: none;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	margin-top: -40px;
	background: var(--bg-white);
	padding: 3rem;
}

.form-label {
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--text-main);
}

.form-control {
	padding: 0.75rem 1rem;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	transition: all 0.2s;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
}

.btn-submit {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	font-weight: 600;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	width: 100%;
	transition: all 0.3s;
}

.btn-submit:hover {
	background-color: #6941c6;
	transform: translateY(-2px);
}

/* Info Section */
.info-item {
	margin-bottom: 2.5rem;
}

.info-icon {
	width: 48px;
	height: 48px;
	background: #f4f3ff;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}


@media (max-width: 768px) {
	.contact-card {
		padding: 1.5rem;
		margin-top: 20px;
	}
}

/* =================End contact Us ================================== */



/* Read Blog Post */

/* Main Content */
.blog-container {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 2.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.badge-fashion {
	background-color: #fdf2fa;
	color: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.75rem;
	padding: 0.35rem 0.75rem;
	border-radius: 4px;
}

.article-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 1.5rem 0;
	line-height: 1.2;
}

.meta-info {
	color: var(--text-muted);
	font-size: 0.875rem;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.main-image {
	border-radius: 12px;
	margin: 2rem 0;
	width: 100%;
}

.content-body p {
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #344054;
}

.blockquote-custom {
	background-color: #f9fafb;
	border-left: 4px solid var(--primary-color);
	padding: 2rem;
	font-style: italic;
	font-size: 1.25rem;
	margin: 2.5rem 0;
	border-radius: 0 12px 12px 0;
}

/* Sidebar */
.sidebar-widget {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.widget-title {
	font-weight: 700;
	border-bottom: 2px solid #eaecf0;
	padding-bottom: 0.75rem;
	margin-bottom: 1.25rem;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border-radius: 6px;
	color: white;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 600;
	gap: 0.5rem;
}

.social-ig {
	background-color: #E1306C;
}

.social-tw {
	background-color: #1DA1F2;
}

.social-fb {
	background-color: #1877F2;
}

.social-yt {
	background-color: #FF0000;
}

/* Cards */
.card-related {
	border: none;
	background: none;
}

.card-related img {
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.card-related:hover img {
	transform: scale(1.03);
}

/* Footer */
footer {
	background-color: var(--bg-footer);
	color: #94a3b8;
	padding: 5rem 0 2rem;
}

footer h5 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-link {
	color: #94a3b8;
	text-decoration: none;
	display: block;
	margin-bottom: 0.75rem;
	transition: color 0.2s;
}

.footer-link:hover {
	color: var(--primary-color);
}

.newsletter-input {
	background-color: #1e293b;
	border: 1px solid #334155;
	color: white;
}

/* Helpers */
.btn-primary-custom {
	background-color: var(--primary-color);
	border: none;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
}

.btn-primary-custom:hover {
	background-color: var(--primary-color);
}

.btn-primary-read-more {
	background-color: var(--primary-color);
	border: none;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
  width: 100%;
}
.btn-primary-show-more{
	background-color: var(--text-main);
	color: var(--bg-white);
	border: none;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
    width: 50%;
	margin: auto;
	
}
.btn-primary-show-more:hover{
	background-color: var(--text-main);
	color: var(--bg-white);
	border: none;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
    width: 50%;
	margin: auto;	
}
.btn-primary-read-more:hover {
	background-color:var(--primary-color);
}


/* End Pagination */

  /* Custom Circle Styling */
.pagination-circle .page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important; /* Forces the circle shape */
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid #eaecf0;
    transition: all 0.2s ease;
  }

  /* Hover State */
  .pagination-circle .page-item .page-link:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }

  /* Active State */
  .pagination-circle .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(127, 86, 217, 0.2);
  }

  /* Focus/Selection State */
  .pagination-circle .page-link:focus {
    box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
  }

/* ======================== About Us ======================== */


/* Hero/Header Section */
.hero-bg {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.pexels.com/photos/1591056/pexels-photo-1591056.jpeg?_gl=1*1m1rb8n*_ga*MTU3MDQ3MDY2Mi4xNzY4NjQ1NDE0*_ga_8JE65Q40S6*czE3NjkyNjM0NDEkbzMkZzEkdDE3NjkyNjM0NTgkajQzJGwwJGgw') center/cover no-repeat;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.hero-title {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--bg-white);
}

/* Process Section */
.process-section {
	padding: 100px 0;
}

.process-item {
	margin-bottom: 120px;
	align-items: center;
}

.process-item:last-child {
	margin-bottom: 0;
}

.process-number {
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
	background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=600') center/cover;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: opacity 0.3s ease;
}

.process-item:hover .process-number {
	opacity: 0.4;
}

.process-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.process-text {
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.process-number {
		font-size: 7rem;
	}

	.process-title {
		font-size: 2rem;
	}

	.process-item {
		text-align: center;
	}
}



