* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	overflow-x: hidden;
}

/* Quality Hero Section */
.quality-hero {
	margin-top: 80px;
	padding: 80px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
	overflow: hidden;
	position: relative;
}

.quality-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,2 26,9 26,16 14,22 2,16 2,9" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
	animation: float 30s ease-in-out infinite;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	color: white;
}

@media (max-width: 768px) {
	.hero-content {
		width:80dvw;
	}
}
.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	opacity: 0;
	animation: slideUp 1s ease 0.3s forwards;
}

.hero-content .intro-text {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	opacity: 0;
	animation: slideUp 1s ease 0.5s forwards;
}

.hero-content .commitment-text {
	font-size: 1.2rem;
	line-height: 1.7;
	opacity: 0.95;
	opacity: 0;
	animation: slideUp 1s ease 0.7s forwards;
}

.hero-visual {
	position: relative;
	opacity: 0;
	animation: slideUp 1s ease 0.9s forwards;
}

.lab-image {
	width: 100%;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
	position: relative;
	overflow: hidden;
}

.lab-image::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
	25% { transform: translateX(10px) translateY(-10px) rotate(2deg); }
	50% { transform: translateX(-5px) translateY(15px) rotate(-1deg); }
	75% { transform: translateX(-15px) translateY(-5px) rotate(1deg); }
}

/* Quality Framework Section */
.quality-framework {
	padding: 100px 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.framework-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.framework-visual {
	position: relative;
}

.pills-illustration {
	width: 100%;
	height: 350px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.pills-illustration::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pills" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="2" fill="white" opacity="0.1"/><circle cx="15" cy="15" r="1.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pills)"/></svg>');
}

.framework-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 2rem;
	position: relative;
}

.framework-content h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 2px;
}

/* Quality Pillars Grid */
.pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.pillar-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border-left: 5px solid transparent;
}

.pillar-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.pillar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.pillar-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.pillar-card p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1rem;
}

/* Colored variants for different pillars */
.pillar-card:nth-child(1) .pillar-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.pillar-card:nth-child(1)::before { background: linear-gradient(135deg, #667eea, #764ba2); }
.pillar-card:nth-child(1) .pillar-icon { box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2); }

.pillar-card:nth-child(2) .pillar-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pillar-card:nth-child(2)::before { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pillar-card:nth-child(2) .pillar-icon { box-shadow: 0 8px 25px rgba(240, 147, 251, 0.2); }

.pillar-card:nth-child(3) .pillar-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pillar-card:nth-child(3)::before { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pillar-card:nth-child(3) .pillar-icon { box-shadow: 0 8px 25px rgba(79, 172, 254, 0.2); }

.pillar-card:nth-child(4) .pillar-icon { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.pillar-card:nth-child(4)::before { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.pillar-card:nth-child(4) .pillar-icon { box-shadow: 0 8px 25px rgba(67, 233, 123, 0.2); }

.pillar-card:nth-child(5) .pillar-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.pillar-card:nth-child(5)::before { background: linear-gradient(135deg, #fa709a, #fee140); }
.pillar-card:nth-child(5) .pillar-icon { box-shadow: 0 8px 25px rgba(250, 112, 154, 0.2); }

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	padding: 80px 0;
	text-align: center;
	color: white;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	padding: 15px 35px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
	background: #1a202c;
	color: white;
	text-align: center;
	padding: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-container { grid-template-columns: 1fr; gap: 2rem; }
	.framework-header { grid-template-columns: 1fr; gap: 2rem; }
	.hero-content h1 { font-size: 2.5rem; }
	.framework-content h2 { font-size: 2rem; }
	.nav-links { display: none; }
	.pillars-grid { grid-template-columns: 1fr; }
	.lab-image, .pills-illustration { height: 300px; }
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-animation .pillar-card {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.stagger-animation.visible .pillar-card:nth-child(1) { animation: slideUp 0.6s ease 0.1s forwards; }
.stagger-animation.visible .pillar-card:nth-child(2) { animation: slideUp 0.6s ease 0.2s forwards; }
.stagger-animation.visible .pillar-card:nth-child(3) { animation: slideUp 0.6s ease 0.3s forwards; }
.stagger-animation.visible .pillar-card:nth-child(4) { animation: slideUp 0.6s ease 0.4s forwards; }
.stagger-animation.visible .pillar-card:nth-child(5) { animation: slideUp 0.6s ease 0.5s forwards; }

