/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.2;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgb(48, 44, 46);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.logo-icon {
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
}

.logo-icon:hover {
	transform: rotate(360deg);
}

.nav-logo h1 {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.2;

	color: #ff6b35; /* Fallback for unsupported browsers */
	background: linear-gradient(90deg, #ff6b35, #ff43c5, #4f34ea);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;

	display: inline-block;
	padding: 0.1px 0;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}
.nav-menu li:nth-child(1) a {
	color: #ff6b35;
}
.nav-menu li:nth-child(2) a {
	color: #ff597e;
}
.nav-menu li:nth-child(3) a {
	color: #ff45bd;
}
.nav-menu li:nth-child(4) a {
	color: #db42cd;
}
.nav-menu li:nth-child(5) a {
	color: #a93dd7;
}

.nav-link:hover {
	color: #ff6b35;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ff6b35;
	transition: width 0.3s ease;
}
.nav-menu li:nth-child(1) .nav-link::after {
	background: #ff6b35;
}
.nav-menu li:nth-child(2) .nav-link::after {
	background: #ff597e;
}
.nav-menu li:nth-child(3) .nav-link::after {
	background: #ff45bd;
}
.nav-menu li:nth-child(4) .nav-link::after {
	background: #db42cd;
}
.nav-menu li:nth-child(5) .nav-link::after {
	background: #a93dd7;
}

.nav-link:hover::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-43%);
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(44, 44, 44, 0.6), rgba(0, 168, 232, 0));
	z-index: -1;
}
/* Animated particles overlay for video */
.hero-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	animation: videoParticleFloat 15s ease-in-out infinite;
}

@keyframes videoParticleFloat {
	0%,
	100% {
		opacity: 0.4;
		transform: translateX(0px) translateY(0px) scale(1);
	}
	25% {
		opacity: 0.7;
		transform: translateX(30px) translateY(-20px) scale(1.1);
	}
	50% {
		opacity: 0.5;
		transform: translateX(-20px) translateY(-30px) scale(1.2);
	}
	75% {
		opacity: 0.6;
		transform: translateX(-30px) translateY(15px) scale(1.05);
	}
}

.hero-content {
	z-index: 1;
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0;
	animation: fadeInUp 1s ease 0.8s forwards;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 1s ease 1.1s forwards;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 0.9rem;
}

.btn-primary {
	color: #ff6b35;
	border-color: #ff6b35;
	background: white;
}

.btn-primary:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-primary.contact:hover {
	color: rgb(255, 67, 197);
	border-color: rgb(255, 67, 197);
	box-shadow: 0 10px 20px rgba(255, 67, 197, 0.3);
}

.btn-secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.btn-secondary:hover {
	background: white;
	color: #2c2c2c;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #2c2c2c;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Expertise Section */
.expertise {
	background: #f5f5f5;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.expertise-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.expertise-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #ff43c5, #4f34ea);
}

.expertise-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
	color: #ff43c5;
	margin-bottom: 1.5rem;
}

.expertise-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.expertise-card p {
	color: #666;
	line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
	background: white;
}

.client-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.client-category {
	background: #f5f5f5;
	padding: 2rem;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}
.client-category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 15px;
	overflow: hidden;
	background: linear-gradient(90deg, #ff6b35, #ff43c5, #4f34ea);
}

.client-category h3 {
	color: #2c2c2c;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.client-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.client-tag {
	background: white;
	color: #2c2c2c;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.client-tag:hover {
	background: #ff43c5;
	color: white;
	transform: translateY(-2px);
}
.client-tag > div {
	display: none;
}

/* About Section */
.about {
	background: #2c2c2c;
	color: white;
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 2.2rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #ccc;
}

.about-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff6b35;
	font-family: 'Montserrat', sans-serif;
}

.stat-label {
	font-size: 0.9rem;
	color: #ccc;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-placeholder {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #ff6b35, #ff43c5, #4f34ea);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

/* Contact Section */
.contact {
	background: #f5f5f5;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
	color: #2c2c2c;
	margin-bottom: 1rem;
	font-size: 2.2rem;
}

.contact-info p {
	color: #666;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.contact-details {
	space-y: 1rem;
}

.contact-item {
	margin-bottom: 1rem;
	color: #333;
}

.contact-item h3 {
	color: #ff6b35;
	margin-bottom: 0.5rem;
}

.contact-item a {
	color: #ff6b35;
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

/* Form Styles */
.contact-form {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #2c2c2c;
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff43c5;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
.footer {
	background: #2c2c2c;
	color: white;
}

.footer .container {
	padding: 12px 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 2rem;
	align-items: center;
	text-align: center;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.footer-logo-icon {
	width: 36px;
	height: 36px;
}

.footer-logo h3 {
	font-size: 1.5rem;
	margin-bottom: 0rem;

	color: #ff6b35; /* Fallback colour */
	background: linear-gradient(90deg, #ff6b35, #ff43c5, #4f34ea);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo p {
	color: #ccc;
	font-size: 0.9rem;
	margin-top: -6px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ff6b35;
}

.footer-copyright p {
	color: #999;
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(44, 44, 44, 0.95);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.about-stats {
		justify-content: center;
	}

	.expertise-grid {
		grid-template-columns: 1fr;
	}

	.client-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.nav-container {
		padding: 1rem;
	}

	.expertise-card,
	.contact-form {
		padding: 1.5rem;
	}
}

.tooltip.active {
	opacity: 1;
	transform: translateY(-100%);
	transition: opacity, transform 0.3s ease;
}

.tooltip {
	position: absolute;
	top: 00px;
	left: -2000px;
	background: #fff;
	padding: 20px;
	z-index: 9999;
	border-radius: 16px;
	outline: 2px solid #4f34ea;
	color: #2c2c2c;
	min-width: 300px;
	transform: translateY(calc(-100% + 4px));
	opacity: 0;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
	transition: none;
}

.tooltip::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: white;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%) rotate(45deg);
	z-index: 1;
	outline: 2px solid #4f34ea;
}

.tooltip::after {
	content: '';
	position: absolute;
	width: 34px;
	height: 20px;
	background: #fff;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: 2;
}
