/* Import professional font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Variables */
:root {
	/* Background colors */
	--bg-primary: #ffffff;

	/* Text colors */
	--text-primary: #212529;

	/* Brand colors */
	--primary: #ff1414;
}

/* Apply font to all elements */
* {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.navbar__logo {
	height: 40px;
	display: flex;
	align-items: center;
	animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.navbar__logo img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

.navbar__menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar__item {
	position: relative;
}

.navbar__link {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 400;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.3rem 0;
}

.navbar__link:hover {
	color: var(--primary);
	transform: translateY(-1px);
}

.navbar__link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.navbar__link:hover::after {
	width: 100%;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.navbar__container {
		padding: 0 1rem;
		height: 50px;
	}

	.navbar__logo {
		height: 30px;
	}

	.navbar__menu {
		gap: 1.5rem;
	}

	.navbar__link {
		font-size: 0.85rem;
	}
}

/* Hero Section Container */
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.background-video {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.background-video__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.background-video__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* Hero Section */
.hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
}

.hero__content {
	pointer-events: auto;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 2rem;
	animation: heroFadeIn 1.2s ease-out 0.8s both;
}

@keyframes heroFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.hero__subtitle {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 3rem;
	opacity: 0.9;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	line-height: 1.5;
}

.hero__actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	min-width: 200px;
}

.btn--primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 20, 20, 0.3);
}

.btn--primary:hover {
	background: #e01212;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 20, 20, 0.4);
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
	.hero__title {
		font-size: 2.5rem;
	}

	.hero__subtitle {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Clients Banner */
.clients-banner {
	background: #1a1a1a;
	padding: 0.25rem 0;
	overflow: hidden;
	position: relative;
}

.clients-banner__container {
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.clients-banner__track {
	display: flex;
	animation: smoothSwipe 30s linear infinite;
	gap: 4rem;
	align-items: center;
	will-change: transform;
	transform: translateX(0);
}

@keyframes smoothSwipe {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.clients-banner__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 240px;
	opacity: 0.6;
	transition: all 0.2s ease;
}

.clients-banner__item:hover {
	opacity: 1;
	transform: scale(1.05);
}

.clients-banner__item img {
	max-height: 220px;
	max-width: 450px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-banner__item:hover img {
	filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Pause animation on hover */
.clients-banner:hover .clients-banner__track {
	animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.clients-banner {
		padding: 0.125rem 0;
	}

	.clients-banner__track {
		gap: 2rem;
	}

	.clients-banner__item {
		height: 160px;
	}

	.clients-banner__item img {
		max-height: 140px;
		max-width: 350px;
	}
}

/* About Section */
.about {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 12rem 0;
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 20, 20, 0.3), transparent);
}

.about__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 4rem;
}

.about__content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 6rem;
	align-items: center;
}

.about__text {
	animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.about__title {
	font-size: 4rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 3rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	position: relative;
}

.about__title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--primary);
	border-radius: 2px;
}

.about__description {
	font-size: 1.3rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 4rem;
	font-weight: 400;
}

.about__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.about__stat {
	text-align: left;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.about__stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #ff6b6b);
}


.about__stat-number {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.about__stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.about__image {
	animation: fadeInUp 1.2s ease-out 0.3s both;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about__image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: 20px;
	bottom: 20px;
	background: linear-gradient(135deg, var(--primary), #ff6b6b);
	border-radius: 24px;
	z-index: -1;
	opacity: 0.1;
}

.about__image img {
	width: 100%;
	max-width: 350px;
	height: 500px;
	object-fit: cover;
	object-position: center top;
	border-radius: 20px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
	.about {
		padding: 6rem 0;
	}

	.about__container {
		padding: 0 2rem;
	}

	.about__content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about__title {
		font-size: 2.5rem;
	}

	.about__description {
		font-size: 1.1rem;
	}

	.about__stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about__stat {
		padding: 1.5rem;
	}

	.about__stat-number {
		font-size: 2.5rem;
	}

	.about__image img {
		max-width: 280px;
		height: 400px;
	}
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 4rem 0 2rem;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer__content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer__brand {
	max-width: 400px;
}

.footer__brand-name {
	font-size: 2rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
}

.footer__description {
	font-size: 1rem;
	line-height: 1.6;
	color: #ccc;
	margin-bottom: 0;
}

.footer__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.footer__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__list li {
	margin-bottom: 0.8rem;
}

.footer__link {
	color: #ccc;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer__link:hover {
	color: var(--primary);
}

.footer__contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	margin-bottom: 0;
}

.footer__contact-label {
	font-size: 0.9rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.footer__contact-link {
	color: #ccc;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer__contact-link:hover {
	color: var(--primary);
}

.footer__contact-text {
	color: #ccc;
	font-size: 0.95rem;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid #333;
}

.footer__copyright {
	color: #999;
	font-size: 0.9rem;
}

.footer__legal {
	display: flex;
	gap: 2rem;
}

.footer__legal-link {
	color: #999;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer__legal-link:hover {
	color: var(--primary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.footer {
		padding: 3rem 0 2rem;
	}

	.footer__content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer__links {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer__bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer__legal {
		flex-direction: column;
		gap: 1rem;
	}
}

/* Skills Section - Full Width Layout */
.skills {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.skills__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 100%;
	height: 100%;
	gap: 0;
}

.skill-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
}

.skill-card:hover {
	z-index: 10;
}

.skill-card__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.skill-card__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.skill-card:hover .skill-card__background img {
	transform: scale(1.2);
}

.skill-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	z-index: 2;
	transition: background 0.5s ease;
}

.skill-card:hover .skill-card__overlay {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.skill-card__content {
	position: relative;
	z-index: 3;
	color: white;
	text-align: center;
	padding: 2rem;
	transition: all 0.5s ease;
}

.skill-card:hover .skill-card__content {
	transform: translateY(-20px);
}

.skill-card__title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
	letter-spacing: -0.02em;
}

.skill-card__description {
	font-size: 1.4rem;
	opacity: 0.9;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
	line-height: 1.3;
	font-weight: 300;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.skills {
		height: auto;
		min-height: 100vh;
	}

	.skills__grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 1fr);
		height: auto;
		min-height: 100vh;
	}

	.skill-card__title {
		font-size: 2.5rem;
	}

	.skill-card__description {
		font-size: 1.1rem;
	}

	.skill-card__content {
		padding: 1.5rem;
	}
}

/* Burger Menu Styles */
.navbar__burger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 24px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.navbar__burger-line {
	width: 100%;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s ease;
	transform-origin: center;
}

.navbar__burger--active .navbar__burger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger--active .navbar__burger-line:nth-child(2) {
	opacity: 0;
}

.navbar__burger--active .navbar__burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navbar Responsiveness */
@media (max-width: 768px) {

	/* Navbar Mobile */
	.navbar__burger {
		display: flex;
	}

	.navbar__menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		transition: right 0.3s ease;
		z-index: 1000;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	}

	.navbar__menu--active {
		right: 0;
	}

	.navbar__item {
		margin: 0;
	}

	.navbar__link {
		font-size: 1.2rem;
		font-weight: 500;
		padding: 1rem 2rem;
		display: block;
		text-align: center;
		width: 100%;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.navbar__link:hover {
		background: rgba(255, 20, 20, 0.1);
		transform: none;
	}

	/* Body scroll lock when menu is open */
	body.menu-open {
		overflow: hidden;
	}
}