@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	background-color: #ffffff;
}
.containerUs {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}
.containerTeam {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	background-color: #f8f9fa;
}
.containerGmp {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	background-color: #f8f9fa;
}
.header {
	background: #fff;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
}
.logo {
	font-size: 24px;
	font-weight: 700;
	color: #003366;
	text-decoration: none;
	display: flex;
	align-items: center;
}
.logo img {
	height: 50px;
}
.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
}
.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 14px;
	display: inline-block;
	position: relative;
	padding: 5px 0;
}
.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #003366;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.nav-links a:hover {
	color: #003366;
	transform: translateY(-3px);
}
.nav-links a:hover::after {
	transform: scaleX(1);
}
.nav-links li a.active {
	background: #003366 !important;
	color: #fff !important;
	padding: 8px 16px !important;
	border-radius: 5px !important;
	transform: none !important;
}
.user-actions {
	display: flex;
	gap: 20px;
	align-items: center;
}
.user-actions a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.3s;
}
.user-actions a:hover {
	color: #003366;
}
.hero-carousel {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.slide {
	display: none;
	width: 100%;
	height: 100%;
}
.slide.active {
	display: block;
}
.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider-prev, .slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	padding: 15px 20px;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}
.slider-prev:hover, .slider-next:hover {
	background: rgba(0,0,0,0.7);
}
.slider-prev {
	left: 20px;
}
.slider-next {
	right: 20px;
}
.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}
.dot.active {
	background: #fff;
	transform: scale(1.2);
}
.stats-section {
	background: #f8f9fa;
	padding: 40px;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	text-align: left;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.stat-item {
	padding: 30px 40px;
	border-right: 1px solid #ddd;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.stat-item:last-child {
	border-right: none;
}
.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #003366;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.stat-item:hover {
	background: #e8e9ea;
	transform: translateY(-3px);
}
.stat-item:hover::before {
	transform: scaleX(1);
}
.stat-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-icon svg {
	width: 40px;
	height: 40px;
	fill: #666;
	transition: all 0.3s ease;
}
.stat-item:hover .stat-icon svg {
	transform: scale(1.1);
	fill: #003366;
}
.stat-content {
	flex: 1;
}
.stat-title {
	font-size: 16px;
	font-weight: 600;
	color: #003366;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.stat-title span {
	transition: transform 0.3s ease;
}
.stat-item:hover .stat-title span {
	transform: translateX(5px);
}
.stat-desc {
	font-size: 12px;
	color: #666;
}
.about-section {
	padding: 60px 25px;
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-text h2 {
	font-size: 36px;
	font-weight: 700;
	color: #003366;
	margin-bottom: 20px;
}
.about-text p {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
}
.about-btn {
	display: inline-block;
	padding: 12px 30px;
	border: 2px solid #003366;
	color: #003366;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s;
}
.about-btn:hover {
	background: #003366;
	color: #fff;
}
.about-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.science-section {
	background: #003366;
	color: #fff;
	padding: 60px 25px;
}
.science-header {
	text-align: center;
	margin-bottom: 80px;
}
.science-header h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
}
.science-header p {
	font-size: 18px;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
}
.science-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 40px;
}
.science-card {
	background: rgba(255,255,255,0.1);
	padding: 40px 30px;
	border-radius: 12px;
	transition: all 0.3s;
}
.science-card:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-5px);
}
.science-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}
.science-card p {
	font-size: 15px;
	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 20px;
}
.science-card a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
}
.science-card a::after {
	content: ' →';
	margin-left: 5px;
}
.science-stats {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 40px;
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.science-stat-item {
	text-align: center;
}
.science-stat-number {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}
.science-stat-label {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}
.team-section {
	padding: 60px 25px;
	background: #f8f9fa;
}
.team-header {
	text-align: center;
	margin-bottom: 60px;
}
.team-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #003366;
	margin-bottom: 15px;
}
.team-card {
	background: #fff;
	padding: 50px 40px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	transition: all 0.3s;
}
.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.team-member {
	font-size: 24px;
	font-weight: 600;
	color: #003366;
	margin-bottom: 5px;
}
.team-title {
	font-size: 16px;
	color: #666;
	margin-bottom: 25px;
}
.team-quote {
	font-size: 18px;
	color: #333;
	font-style: italic;
	line-height: 1.8;
	margin-bottom: 30px;
}
.team-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #003366;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s;
}
.team-btn:hover {
	background: #0056b3;
}
.products-section {
	padding: 60px 25px;
	background: #fff;
}
.products-header {
	text-align: center;
	margin-bottom: 60px;
}
.products-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #003366;
	margin-bottom: 15px;
}
.products-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}
.product-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}
.product-card:hover {
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	transform: translateY(-8px);
}
.product-image {
	width: 100%;
	height: 300px;
	/* object-fit: cover;*/
	transition: transform 0.3s ease;
}
.product-card:hover .product-image {
	transform: scale(1.05);
}
.product-content {
	padding: 15px;
}
.product-title-link {
	text-decoration: none;
}
.product-title {
	font-size: 17px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}
.product-title:hover {
	color: #003366;
}
.view-details-btn {
	display: inline-block;
	padding: 8px 16px;
	background: #003366;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.view-details-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
}
.products-page {
	padding: 60px 25px;
	background: #fff;
}
.page-header {
	text-align: center;
	margin-bottom: 40px;
}
.page-header h1 {
	font-size: 36px;
	font-weight: 700;
	color: #003366;
	margin: 0;
}
.filters-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.search-form {
	width: 100%;
}
.search-input-wrapper {
	display: flex;
	align-items: center;
	background: #f8f9fa;
	border-radius: 30px;
	padding: 5px 5px 5px 25px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}
.search-input-wrapper:focus-within {
	border-color: #003366;
	box-shadow: 0 0 0 3px rgba(0,51,102,0.1);
}
.search-input-wrapper input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 15px;
	font-size: 15px;
	outline: none;
}
.search-input-wrapper input::placeholder {
	color: #999;
}
.search-input-wrapper button {
	background: #003366;
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 12px 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}
.search-input-wrapper button:hover {
	background: #0056b3;
	transform: translateY(-2px);
}
.search-input-wrapper button i {
	font-size: 15px;
}
.category-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.filter-label {
	font-size: 14px;
	font-weight: 600;
	color: #666;
}
.category-tag {
	display: inline-block;
	padding: 8px 20px;
	background: #f8f9fa;
	color: #333;
	text-decoration: none;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
}
.category-tag:hover {
	background: #003366;
	color: #fff;
	border-color: #003366;
}
.category-tag.active {
	background: #003366;
	color: #fff;
	border-color: #003366;
}
.pagination-wrapper {
	text-align: center;
	margin-top: 40px;
}
.no-products {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}
.product-price {
	font-size: 18px;
	font-weight: bold;
	color: #003366;
	margin-bottom: 15px;
}
.add-to-cart-btn {
	display: block;
	width: 100%;
	padding: 12px 0;
	background: #003366;
	color: #fff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}
.add-to-cart-btn:hover {
	background: #0056b3;
	transform: translateY(-2px);
}
.news-section {
	padding: 60px 25px;
	background: #f8f9fa;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 40px;
}
.news-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
}
.news-card:hover {
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}
.news-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.news-content {
	padding: 25px;
}
.news-date {
	font-size: 13px;
	color: #999;
	margin-bottom: 10px;
}
.news-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	text-decoration: none;
	display: block;
}
.news-title:hover {
	color: #003366;
}
.news-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}
.view-all-btn {
	display: block;
	text-align: center;
	margin-top: 40px;
	padding: 12px 30px;
	border: 2px solid #003366;
	color: #003366;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s;
}
.view-all-btn:hover {
	background: #003366;
	color: #fff;
}
.careers-section {
	background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
	color: #fff;
	padding: 60px 25px;
	text-align: center;
}
.careers-section h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
}
.careers-btn {
	display: inline-block;
	padding: 15px 40px;
	background: #fff;
	color: #003366;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	font-size: 16px;
	transition: all 0.3s;
}
.careers-btn:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}
.footer {
	background: #003366;
	color: #fff;
	padding: 80px 40px 40px;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 40px;
	margin-bottom: 60px;
}
.footer-logo {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.footer-description {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.6;
}
.footer-links h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.7;
	transition: opacity 0.3s;
}
.footer-links a:hover {
	opacity: 1;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	text-align: center;
	font-size: 14px;
	opacity: 0.7;
}
@media (max-width: 1024px) {
	.science-grid, .products-grid, .news-grid {
		grid-template-columns: repeat(2,1fr);
	}
	.footer-grid {
		grid-template-columns: repeat(2,1fr);
	}
}
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.hero-carousel {
		height: 500px;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.stat-item {
		border-right: none;
		border-bottom: 1px solid #999;
	}
	.about-content {
		grid-template-columns: 1fr;
	}
	.science-grid, .products-grid, .news-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
}