* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #07fcca;
	--secondary-color: #00d9b8;
	--dark-color: #1A1A1A;
	--light-color: #FFFFFF;
	--gray-color: #F5F5F5;
	--text-color: #333333;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	transition: all 0.3s ease;
}

.hero {
	min-height: 100vh;
	/* background: linear-gradient(135deg, #07fcca 0%, #00d9b8 100%); */
	background: linear-gradient(135deg, #0d0d0d 0%, #171718 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); */
	background: url('images/hive-background.png');
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(100px, 100px); }
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
	color: white;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.tagline {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 2rem;
	opacity: 0.95;
	animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}

.btn {
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: white;
	color: var(--primary-color);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: var(--primary-color);
	transform: translateY(-3px);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.floating-element {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	/* border-radius: 50%; */
	aspect-ratio: 1/cos(30deg);
	clip-path: polygon(50% -50%,100% 50%,50% 150%,0 50%);
	/* background: #3B8686; */
	animation: float 20s infinite;
}

.floating-element:nth-child(1) {
	/* width: 80px; */
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.floating-element:nth-child(2) {
	/* width: 120px; */
	height: 120px;
	top: 60%;
	left: 80%;
	animation-delay: 2s;
}

.floating-element:nth-child(3) {
	/* width: 60px; */
	height: 60px;
	top: 80%;
	left: 20%;
	animation-delay: 4s;
}

.floating-element:nth-child(4) {
	height: 90px;
	top: 88%;
	left: 60%;
	animation-delay: 4s;
}

.floating-element:nth-child(5) {
	height: 60px;
	top: 30%;
	left: 30%;
	animation-delay: 4s;
}

.floating-element:nth-child(6) {
	height: 100px;
	top: 25%;
	left: 75%;
	animation-delay: 4s;
}

.floating-element:nth-child(7) {
	height: 30px;
	top: 50%;
	left: 20%;
	animation-delay: 4s;
} 


@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

section {
	padding: 5rem 2rem;
}

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

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.section-title p {
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--dark-color);
}

.feature-card p {
	color: #666;
	line-height: 1.8;
}

.locations-section {
	background: var(--gray-color);
}

.locations-slider {
	margin-top: 3rem;
}

.location-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.location-image {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #07fcca 0%, #00d9b8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
	position: relative;
	overflow: hidden;
}

.image-slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.slider-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	object-fit: cover;
}

.slider-image.active {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: white;
	transform: scale(1.2);
}

.location-info {
	padding: 2rem;
}

.location-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--dark-color);
}

.location-specs {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.spec-badge {
	background: var(--gray-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.about-section {
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--dark-color);
}

.about-text p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.stat-box {
	text-align: center;
	padding: 1.5rem;
	background: var(--gray-color);
	border-radius: 15px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	display: block;
}

.stat-label {
	color: #666;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.about-image {
	background: linear-gradient(135deg, #07fcca 0%, #00d9b8 100%);
	border-radius: 20px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: white;
}

.contact-section {
	background: var(--dark-color);
	color: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.contact-details h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-details p {
	color: #ccc;
	line-height: 1.6;
}

.contact-details a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-details a:hover {
	color: var(--primary-color);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.social-link {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary-color);
	transform: translateY(-5px);
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	padding: 2.5rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	color: white;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

footer {
	background: #0F0F0F;
	color: white;
	text-align: center;
	padding: 2rem;
}

footer p {
	color: #999;
}

@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: white;
		flex-direction: column;
		padding: 2rem;
		transition: left 0.3s ease;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		left: 0;
	}

	.menu-toggle {
		display: flex;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.tagline {
		font-size: 1.2rem;
	}

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section-title h2 {
		font-size: 2rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}
}

.swiper {
	padding-bottom: 50px !important;
}

.swiper-pagination-bullet {
	background: var(--primary-color) !important;
	width: 12px !important;
	height: 12px !important;
}

.swiper-pagination-bullet-active {
	width: 30px !important;
	border-radius: 6px !important;
}