:root {
	/* Your Primary Color: #9a258f */
	--bs-primary-rgb: 154, 37, 143;
	--bs-primary: #8a087d;
	/* Accent Colors for the Mesh Gradient */
	--bd-accent-rgb: 233, 30, 99;   /* Pinkish */
	--bd-violet-rgb: 103, 58, 183;  /* Violet */
	--bd-pink-rgb: 255, 193, 7;     /* Gold/Warm accent */

	--bs-body-bg-rgb: 255, 255, 255;
	--brand-purple: #9c27b0; 
	--light-purple-bg: #fdf5ff;
}

body{
	background-color: #F8F6F8;
	font-family: 'Arial Narrow Bold', sans-serif;
	/* The requested background logic adapted for Light Mode */
	backgro und-image: 
		linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 0.01), rgba(var(--bs-body-bg-rgb), 1) 85%),
		radial-gradient(ellipse at top left, rgba(var(--bs-primary-rgb), 0.15), transparent 50%),
		radial-gradient(ellipse at top right, rgba(var(--bd-accent-rgb), 0.1), transparent 50%),
		radial-gradient(ellipse at center right, rgba(var(--bd-violet-rgb), 0.08), transparent 50%),
		radial-gradient(ellipse at center left, rgba(var(--bd-pink-rgb), 0.05), transparent 50%);
	background-attachment: fixed;
}

.container10{
	width: 80% !important;
}

.rounded-carousel {
	border-radius: 20px;
	overflow: hidden; /* VERY IMPORTANT */ 
}

.nav-item{
	margin-right: 20px;
	margin-right: 20px;
}

.h1{
	color: rgba(154, 37, 143, 0.75);
}


.section-title {
	color: #b455a0;
}

.section-desc {
	max-width: 820px;
	font-size: 16px;

}

.why-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 36px;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}

.why-card img {
	width: 40px;
	margin-bottom: 18px;
}

.why-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.why-card p {
	font-size: 15px;
	color: #6c757d;
	line-height: 1.6;
}

.why-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);

}

.red{
	border : 1px solid red;
}

.bg-black {
	background: #000;
}

.text-purple {
	color: #b455a0;
}

.pack-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	height: 260px;
}

.pack-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Purple brand hover overlay */
.pack-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(154, 37, 143, 0.38);
	opacity: 0;
	transition: 0.4s ease;
	z-index: 1;
}

.pack-card:hover::before {
	opacity: 1;
}

/* Make sure text stays above overlay */
.pack-card span {
	z-index: 2;
}


.pack-card::after {
	content: "";
	position: absolute;
	inset: 0;
}

.pack-card span {
	position: absolute;
	bottom: 24px;
	left: 24px;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	z-index: 2;
}

.pack-card img {
	transition: 0.5s ease;
}


.pack-card:hover img {
	transform: scale(1.05);

}

.pack-card:hover{
	background: rgba(154, 37, 143, 0.38);
}


/* Mobile */
@media (max-width: 768px) {
	.pack-card {
		height: 200px;
	}

	.pack-card span {
		font-size: 22px;
	}
}

.bg-black { background:#000; }
.text-purple { color:#b455a0; }

.achieve-card {
	transition: 0.6s ease;
	border-radius: 18px;
	overflow: hidden;
	transform: scale(0.9);
}

.achieve-card img {
	width: 100%;
	border-radius: 18px;
}

.packaging-intro {
	max-width: 720px;
	margin: 0 auto 40px;
	color: #aaa;
	font-size: 17px;
}


/* Spotlight */
.achieve-card.active {
	transform: scale(1);
	z-index: 2;
	box-shadow: 0 20px 60px rgba(154,37,143,0.15);
}

.site-footer {
	/* background: linear-gradient(180deg, #fde9ef 0%, #fff6f9 100%); */
	background: rgba(252, 230, 240, 0.35); 
	border-radius: 40px;
	margin: 40px;
	box-shado w: 0 20px 60px rgba(180,85,160,0.08);
}

.footer-title {
	color: #b455a0;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 18px;
}

.footer-text {
	max-width: 520px;
	line-height: 1.8;
	font-size: 15.5px;
	color: #333;
}

.footer-info p {
	display: flex;
	gap: 14px;
	margin-bottom: 22px;
	align-items: flex-start;
}

.footer-info img {
	width: 26px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
}

.footer-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: #b455a0;
	transition: 0.3s;
}

.footer-links a:hover::after {
	width: 100%;
}

.footer-contact {
	list-style: none;
	padding: 0;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: rgba(180,85,160,0.06);
	border-radius: 10px;
	margin-bottom: 10px;
	font-size: 15px;
}

.footer-contact img {
	width: 20px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 30px;
	background: rgba(180,85,160,0.12);
	color: #b455a0;
	font-weight: 600;
	text-decoration: none;
	margin-right: 10px;
	transition: 0.3s;
}

.footer-social a:hover {
	background: #b455a0;
	color: #fff;
}

.footer-social img {
	width: 20px;
}

/* Watermark */
.footer-watermark {
	position: absolute;
	bottom: 30px;
	right: 40px;
	width: 160px;
	opacity: 0.15;
}

/* Mobile */
@media (max-width: 768px) {
	.site-footer {
		margin: 15px;
		border-radius: 25px;
	}

	.footer-watermark {
		display: none;
	}
}
/* Hero Section */
.hero-section {
	background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/assets/images/slides/background.jpg');
	background-size: cover;
	background-position: center;
	height: 400px;
	display: flex;
	align-items: center;
	border-radius: 20px;	
	margin-bottom: 80px;
}
.hero-title { font-weight: 800; font-size: 3.5rem; color: white; }
.hero-title span { color: var(--brand-purple); }

/* General Styling */
.text-purple { color: var(--brand-purple); }
.section-title { font-weight: 700; color: #1a1a1a; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--brand-purple); margin-bottom: 0; }
.stat-label { font-size: 0.8rem; font-weight: 600; color: #888; text-transform: uppercase; }

/* Purpose Cards */
.purpose-section { background-color: var(--light-purple-bg); padding: 80px 0; border-radius: 50px; }
.purpose-card { 
	background: white; border: none; border-radius: 15px; 
	padding: 40px 30px; height: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}
.purpose-icon { 
	width: 50px; height: 50px; background: #fff0ff; color: var(--brand-purple);
	display: flex; align-items: center; justify-content: center;
	border-radius: 10px; margin-bottom: 20px; font-size: 1.5rem;
}

/* Core Competencies */
.comp-icon-box {
	border: 1px solid #eee; padding: 20px; border-radius: 10px;
	transition: all 0.3s ease; margin-bottom: 15px;
}
.comp-text { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }

/* Quality Section */
.quality-section { padding: 100px 0; background-color: #f8f9fa; }
.cert-item { 
	background: white; padding: 15px 20px; border-radius: 10px;
	margin-bottom: 15px; display: flex; align-items: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.cert-check { 
	background: var(--brand-purple); color: white; 
	width: 25px; height: 25px; border-radius: 5px;
	display: flex; align-items: center; justify-content: center;
	margin-right: 15px; font-size: 0.8rem;
}