/* ========================================
   CSS Variables
======================================== */
:root {
	--main-color: #20e3b2;
	--main-color-light: #0cb997;
	--bg-color: #0a0a0a;
	--bg-color-2: #121212;
	--text-color: #fff;
	--text-muted: #a5a5a5;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Loading Screen
======================================== */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader__croc {
	width: clamp(100px, 20vw, 180px);
	animation: crocWalk 2.5s ease-in-out infinite;
	filter: drop-shadow(0 10px 25px rgba(32, 227, 178, 0.3));
}

.loader__croc svg {
	display: block;
	width: 100%;
	height: auto;
}

.loader__croc svg .croc-fill {
	fill: var(--main-color);
	stroke: var(--main-color);
}

.loader__croc svg .croc-body {
	fill: var(--main-color);
}

.loader__croc svg .croc-leg {
	fill: var(--main-color-light);
	stroke: var(--main-color);
}

.loader__croc svg .croc-outline {
	stroke: var(--main-color);
}

.loader__croc svg .croc-outline-leg {
	stroke: var(--main-color);
}

/* Leg walking animation */
.loader__croc svg .croc-leg-back,
.loader__croc svg .croc-outline-leg-back {
	transform-origin: 23px 47px;
	animation: legWalkBack 0.4s ease-in-out infinite;
}

.loader__croc svg .croc-leg-front,
.loader__croc svg .croc-outline-leg-front {
	transform-origin: 40px 47px;
	animation: legWalkFront 0.4s ease-in-out infinite;
}

@keyframes legWalkBack {
	0%, 100% { transform: rotate(-8deg); }
	50% { transform: rotate(8deg); }
}

@keyframes legWalkFront {
	0%, 100% { transform: rotate(8deg); }
	50% { transform: rotate(-8deg); }
}

/* Crocodile walking left to right animation */
@keyframes crocWalk {
	0% {
		transform: translateX(-100px) translateY(0);
	}
	25% {
		transform: translateX(-50px) translateY(-5px);
	}
	50% {
		transform: translateX(0) translateY(0);
	}
	75% {
		transform: translateX(50px) translateY(-5px);
	}
	100% {
		transform: translateX(100px) translateY(0);
	}
}

.loader__text {
	margin-top: 2rem;
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 600;
	color: var(--main-color);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

/* ========================================
   Base Styles
======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--bg-color);
	color: var(--text-color);
	overflow-x: hidden;
	line-height: 1.6;
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

.section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}



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

/* ========================================
   Glow Effects
======================================== */
.glow-effect {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	filter: blur(150px);
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.glow-effect.one {
	background: var(--main-color);
	left: -200px;
	top: 50%;
	transform: translateY(-50%);
}

.glow-effect.two {
	background: var(--main-color);
	right: -200px;
	top: 30%;
}

/* ========================================
   Social Icons Sidebar
======================================== */
.social-icons {
	position: fixed;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}

.social-icons .icon {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	color: var(--text-color);
	font-size: 20px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.social-icons .icon:hover {
	background: var(--main-color);
	color: var(--bg-color);
	transform: scale(1.1);
	border-color: var(--main-color);
	box-shadow: 0 0 20px rgba(32, 227, 178, 0.4);
}

.social-icons .icon svg {
	width: 20px;
	height: 20px;
}

/* ========================================
   Header / Navigation
======================================== */
.header {
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	width: auto;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 0;
	background: rgba(30, 30, 30, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	backdrop-filter: blur(20px);
	overflow: hidden;
}

.header .nav-link {
	padding: 18px 50px;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-muted);
	border-radius: 0;
	transition: all 0.3s ease;
	position: relative;
}

.header .nav-link:hover {
	color: var(--text-color);
}

.header .nav-link.active {
	color: var(--text-color);
	background: rgba(32, 227, 178, 0.15);
	border-radius: 50px;
	box-shadow: inset 0 0 20px rgba(32, 227, 178, 0.1);
}

/* ========================================
   Home / Hero Section
======================================== */
.home {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.home .bg-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.home .bg-text .scroll-text {
	position: absolute;
	font-size: 180px;
	font-weight: 800;
	color: rgba(32, 227, 178, 0.04);
	white-space: nowrap;
	text-transform: lowercase;
	letter-spacing: -5px;
}

.home .bg-text .scroll-text.top {
	top: 15%;
	animation: scrollLeft 30s linear infinite;
}

.home .bg-text .scroll-text.bottom {
	bottom: 20%;
	animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.home .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	padding: 0;
	padding-left: 150px;
}

.home .info {
	flex: 1;
	padding-right: 50px;
	z-index: 2;
}

.home .info .title {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 25px;
}

.home .info .title span {
	color: var(--main-color);
	font-weight: 700;
}

.home .info .description {
	font-size: 20px;
	color: var(--text-muted);
	max-width: 550px;
	margin-bottom: 40px;
	line-height: 1.7;
	font-style: italic;
	font-weight: 300;
}

.home .info .cta-btns {
	display: flex;
	gap: 20px;
}

.home .info .cta-btns a {
	padding: 20px 50px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	background: rgba(30, 30, 30, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--text-color);
}

.home .info .cta-btns a:hover {
	background: rgba(50, 50, 50, 0.9);
	border-color: var(--main-color);
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(32, 227, 178, 0.3);
}

/* Home Image Section */
.home .image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.home .image::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -100px;
	right: 0;
	height: 150px;
	background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
	z-index: 2;
	pointer-events: none;
}

.home .image .main-img {
	height: 95%;
	width: auto;
	max-width: none;
	object-fit: contain;
	object-position: bottom center;
	z-index: 1;
}

/* Floating Icons */
.home .image .icons {
	position: absolute;
	/* move the icon container slightly inward so icons sit over the image shoulders */
	top: 8%;
	left: -60px;
	right: 0;
	bottom: 0;
	z-index: 3;
	pointer-events: none;
}

.home .image .icons .icon {
	position: absolute;
	opacity: 0;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
	animation: floatIn 1.5s ease forwards, floatLoop 4s ease-in-out infinite;
}

.home .image .icons .icon.ae {
	width: 60px;
	left: 12%;
	top: 40%;
	animation-delay: 0.4s, 1.9s;
}

.home .image .icons .icon.pr {
	width: 60px;
	right: 12%;
	top: 40%;
	animation-delay: 0.6s, 2.1s;
}

.home .image .icons .icon.ps {
	width: 55px;
	right: 24%;
	top: 34%;
	animation-delay: 0.2s, 1.7s;
}

.home .image .icons .icon.ai {
	width: 55px;
	left: 4%;
	top: 34%;
	animation-delay: 0.3s, 1.8s;
}

.home .image .icons .icon.lr {
	width: 50px;
	right: 6%;
	top: 10%;
	animation-delay: 0.5s, 2s;
}

.home .image .icons .icon.au {
	width: 50px;
	left: 20%;
	top: 58%;
	animation-delay: 0.7s, 2.2s;
}

.home .image .icons .icon.capcut {
	width: 50px;
	right: 20%;
	top: 58%;
	animation-delay: 0.8s, 2.3s;
}

.home .image .icons .icon.canva {
	width: 50px;
	left: 30%;
	top: 20%;
	animation-delay: 0.35s, 1.85s;
}

.home .image .icons .icon.affinity {
	width: 50px;
	/* move slightly further right to clear the face */
	right: 20%;
	top: 20%;
	animation-delay: 0.45s, 1.95s;
	border-radius: 12px;
}

@keyframes floatIn {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.7);
	}
	70% {
		opacity: 1;
		transform: translateY(-15px) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes floatLoop {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-15px) rotate(2deg);
	}
	50% {
		transform: translateY(-25px) rotate(0deg);
	}
	75% {
		transform: translateY(-15px) rotate(-2deg);
	}
}

/* ========================================
   Text Box (Section Labels)
======================================== */
.text-box {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	padding: 8px 15px;
	margin-bottom: 15px;
}

.text-box .bracket {
	color: var(--main-color);
	font-size: 20px;
	font-weight: 300;
}

.text-box .text {
	font-size: 14px;
	color: var(--text-muted);
	letter-spacing: 1px;
}

.text-box .bracket.top-left,
.text-box .bracket.bottom-left {
	position: absolute;
	left: 0;
}

.text-box .bracket.top-right,
.text-box .bracket.bottom-right {
	position: absolute;
	right: 0;
}

.text-box .bracket.top-left,
.text-box .bracket.top-right {
	top: -5px;
}

.text-box .bracket.bottom-left,
.text-box .bracket.bottom-right {
	bottom: -5px;
}

/* ========================================
   Section Head
======================================== */
.section-head {
	text-align: center;
	margin-bottom: 60px;
}

.section-head h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-head p {
	font-size: 16px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================
   About Section
======================================== */
.about .container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: start;
}

.about .image-container {
	position: relative;
}

.about .image-container .glass-card {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	padding: 30px;
	backdrop-filter: blur(20px);
	overflow: hidden;
}

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

.about .image-container .image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 600px;
}

.about .image-container .image img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	position: relative;
	z-index: 2;
	object-fit: cover;
}

.about .image-container .image-text {
	position: absolute;
	bottom: 15%;
	left: 20px;
	z-index: 3;
	pointer-events: none;
}

.about .image-container .image-text .small-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.about .image-container .image-text .big-text {
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	color: rgba(32, 227, 178, 0.5);
	text-transform: uppercase;
}

.about .image-container .years {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, rgba(32, 227, 178, 0.2) 0%, rgba(32, 227, 178, 0.1) 100%);
	border: 1px solid rgba(32, 227, 178, 0.3);
	padding: 15px 30px;
	border-radius: 15px;
	text-align: center;
	backdrop-filter: blur(20px);
	z-index: 10;
}

.about .image-container .years h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1;
}

.about .image-container .years p {
	font-size: 14px;
	color: var(--text-muted);
}

.about .image-container .circle-wrapper {
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	z-index: 0;
	pointer-events: none;
}

.about .image-container .circle-wrapper .circle {
	width: 100%;
	height: 100%;
	background: var(--main-color);
	border-radius: 50%;
	opacity: 0.3;
	filter: blur(80px);
}

.about .details .section-label {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.about .details .head h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 25px;
}

.about .details > p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.9;
	margin-bottom: 30px;
	font-style: italic;
}

.about .details .numbers {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

.about .details .numbers .box {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px 40px;
	backdrop-filter: blur(10px);
	text-align: center;
}

.about .details .numbers .box h3 {
	font-size: 42px;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1;
}

.about .details .numbers .box p {
	font-size: 14px;
	color: var(--text-muted);
}

.about .details .expertise {
	margin-bottom: 40px;
}

.about .details .expertise h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.about .details .expertise .items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.about .details .expertise .item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about .details .expertise .item .icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	border-radius: 50%;
	color: var(--bg-color);
	font-size: 14px;
}

.about .details .expertise .item p {
	font-size: 14px;
	color: var(--text-muted);
}

.about .details .contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 35px;
	background: var(--main-color);
	color: var(--bg-color);
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.about .details .contact-btn:hover {
	background: var(--main-color-light);
	transform: translateY(-2px);
}

/* ========================================
   Reels Section - Creative Showcase
======================================== */
.reels-track {
	display: flex;
	gap: 25px;
	align-items: center;
	padding: 40px 0;
	animation: scrollReels 20s linear infinite;
	width: max-content;
}

.reels-track:hover {
	animation-play-state: paused;
}

@keyframes scrollReels {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.reels-showcase {
	position: relative;
	overflow: hidden;
}

.reels-showcase::before,
.reels-showcase::after {
	content: '';
	position: absolute;
	top: 0;
	width: 80px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.reels-showcase::before {
	left: 0;
	background: linear-gradient(to right, var(--bg-color), transparent);
}

.reels-showcase::after {
	right: 0;
	background: linear-gradient(to left, var(--bg-color), transparent);
}

.reel-card {
	/* slightly narrower to avoid stretching, taller cards feel more cinematic */
	flex: 0 0 260px;
	width: 260px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-inner {
	/* taller inner container to give the video more vertical space */
	height: 520px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 8px;
	display: flex;
	flex-direction: column;
}

/* Make the media area take most of the card height so iframe fits nicely */
.reel-media {
	flex: none;
	height: 78%;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.reel-info {
	height: 22%;
	padding: 10px 12px;
	box-sizing: border-box;
}

.reel-media iframe {
	width: 100%;
	height: 100%;
	display: block;
}

.reel-card:hover {
	transform: translateY(-15px) scale(1.03);
}

.reel-card:hover .reel-inner {
	border-color: var(--main-color);
	box-shadow: 0 25px 50px rgba(32, 227, 178, 0.25);
}

.reel-media {
	flex: 1;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
}

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

/* Responsive iframe embeds for reels (Instagram/Facebook) */
.reel-media iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: transparent;
}

.reel-media .reel-link {
	display: inline-block;
	padding: 14px 18px;
	background: rgba(32,227,178,0.12);
	color: var(--main-color);
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
}

.reel-card:hover .reel-media img {
	transform: scale(1.1);
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 50px;
	height: 50px;
	background: rgba(32, 227, 178, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	cursor: pointer;
}

.play-btn i {
	font-size: 24px;
	color: #0a0a0a;
	margin-left: 3px;
}

.reel-card:hover .play-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.play-btn:hover {
	background: var(--main-color);
	box-shadow: 0 0 30px rgba(32, 227, 178, 0.6);
}

.reel-info {
	padding: 12px 8px 4px;
	text-align: center;
}

.reel-tag {
	display: inline-block;
	padding: 4px 12px;
	background: linear-gradient(135deg, rgba(32, 227, 178, 0.2) 0%, rgba(32, 227, 178, 0.1) 100%);
	border: 1px solid rgba(32, 227, 178, 0.3);
	border-radius: 20px;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.reel-info h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 2px;
}

.reel-info p {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Reels Stats Section */
.reels-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 50px;
	padding: 30px 40px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--main-color) 0%, #0cb997 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ========================================
   Services Section
======================================== */
.services .cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.services .card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 40px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

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

.services .card:hover {
	transform: translateY(-10px);
	border-color: rgba(32, 227, 178, 0.5);
	box-shadow: 0 25px 50px rgba(32, 227, 178, 0.15);
}

.services .card .image {
	width: 80px;
	height: 80px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(32, 227, 178, 0.1);
	border-radius: 20px;
}

.services .card .image i {
	font-size: 42px;
	color: var(--main-color);
}

.services .card .name {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.services .card .description {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 25px;
}

.services .card .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--main-color);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.services .card .btn:hover {
	gap: 12px;
}

/* ========================================
   Portfolio Section (Featured Campaigns)
======================================== */
.portfolio {
	padding-inline: clamp(1.5rem, 6vw, 5rem);
}

.portfolio__layout {
	max-width: 1400px;
	margin: 0 auto clamp(3rem, 6vw, 4rem);
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding-left: clamp(1rem, 4vw, 3rem);
}

.portfolio__intro {
	max-width: 420px;
}

.portfolio__intro .section-label {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.portfolio__intro h2 {
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.portfolio__intro .lede {
	color: var(--text-muted);
	margin-bottom: 1.6rem;
	line-height: 1.7;
}

.portfolio__highlights {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.portfolio__highlights li {
	display: flex;
	align-items: flex-start;
}

.portfolio__highlights li::before {
	content: ">";
	color: var(--main-color);
	margin-right: 0.6rem;
	margin-top: 0.1rem;
	font-size: 0.85rem;
}

.portfolio__rail-wrap {
	position: relative;
	overflow-x: auto;
	padding-bottom: 1.5rem;
	mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
	scroll-snap-type: x mandatory;
}

.portfolio__rail {
	display: flex;
	gap: clamp(1.6rem, 4vw, 2.8rem);
	min-height: 450px;
	padding-bottom: 0.5rem;
}

.portfolio__rail-wrap::-webkit-scrollbar {
	height: 8px;
}

.portfolio__rail-wrap::-webkit-scrollbar-thumb {
	background: rgba(32, 227, 178, 0.35);
	border-radius: 999px;
}

.portfolio__card {
	--card-accent: rgba(32, 227, 178, 0.45);
	position: relative;
	flex: 0 0 clamp(320px, 60vw, 520px);
	border-radius: 40px;
	padding: clamp(1.8rem, 3vw, 2.4rem);
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(32, 227, 178, 0.22);
	box-shadow: 0 28px 48px rgba(0, 0, 0, 0.35);
	transition: transform 0.45s ease, box-shadow 0.45s ease;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	backdrop-filter: blur(20px);
}

.portfolio__card::before {
	content: "";
	position: absolute;
	inset: -20% -30% 40% -10%;
	background: radial-gradient(circle at top left, var(--card-accent), transparent 65%);
	opacity: 0.7;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.portfolio__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 36px 64px rgba(0, 0, 0, 0.45);
}

.portfolio__card:hover::before {
	transform: scale(1.08) translate(8%, -6%);
	opacity: 0.85;
}

.portfolio__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(1.4rem, 3vw, 2rem);
	height: 100%;
}

.portfolio__visual {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.portfolio__tag {
	align-self: flex-start;
	font-size: 0.65rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(4, 13, 15, 0.7);
	border: 1px solid rgba(32, 227, 178, 0.35);
	color: var(--main-color);
}

.portfolio__visual-frame {
	position: relative;
	border-radius: 28px;
	padding-top: 60%;
	background: rgba(2, 9, 10, 0.6);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 38px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

.portfolio__visual-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.portfolio__card:hover .portfolio__visual-media {
	transform: scale(1.04);
}

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

.portfolio__header {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.portfolio__header h3 {
	font-size: clamp(1.4rem, 3.5vw, 1.8rem);
	font-weight: 600;
}

.portfolio__meta {
	display: flex;
	gap: 0.65rem;
	flex-wrap: wrap;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--main-color);
}

.portfolio__body p {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

.portfolio__cta {
	margin-top: 3rem;
	text-align: center;
}

.portfolio__cta .cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background: var(--main-color);
	color: var(--bg-color);
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.portfolio__cta .cta-btn:hover {
	background: var(--main-color-light);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(32, 227, 178, 0.3);
}

/* ========================================
   Clients Section
======================================== */
.clients .clients-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.clients .client-box {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 30px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

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

.clients .client-box:hover {
	transform: translateY(-10px);
	border-color: rgba(32, 227, 178, 0.5);
	box-shadow: 0 25px 50px rgba(32, 227, 178, 0.15);
}

.clients .client-box .info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.clients .client-box .info .image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.clients .client-box .info .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clients .client-box .info .data .name {
	font-size: 16px;
	font-weight: 600;
}

.clients .client-box .info .data .job {
	font-size: 13px;
	color: var(--text-muted);
}

.clients .client-box .description {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
}

/* ========================================
   Contact Section
======================================== */
.contact .container {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact .form {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 40px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

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

.contact .form .head {
	margin-bottom: 30px;
}

.contact .form .head h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact .form .head p {
	font-size: 14px;
	color: var(--text-muted);
}

.contact .form .inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 25px;
}

.contact .form .form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact .form .form-input label {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.contact .form .form-input input,
.contact .form .form-input textarea {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	color: var(--text-color);
	font-family: inherit;
	font-size: 14px;
	transition: all 0.3s ease;
}

.contact .form .form-input input:focus,
.contact .form .form-input textarea:focus {
	outline: none;
	border-color: var(--main-color);
}

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

.contact .form button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 35px;
	background: var(--main-color);
	color: var(--bg-color);
	font-size: 14px;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact .form button:hover {
	background: var(--main-color-light);
	transform: translateY(-2px);
}

.contact .methods h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
}

.contact .methods .cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact .methods .method {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}

.contact .methods .method:hover {
	border-color: rgba(32, 227, 178, 0.5);
	transform: translateX(10px);
}

.contact .methods .method .icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(32, 227, 178, 0.1);
	border-radius: 12px;
	color: var(--main-color);
	font-size: 22px;
}

.contact .methods .method .info h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact .methods .method .info p {
	font-size: 14px;
	color: var(--text-muted);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1400px) {
	.home .container {
		padding-left: 120px;
	}
	
	.home .image {
		width: 45%;
	}
}

@media (max-width: 1200px) {
	.home .container {
		padding-left: 100px;
	}
	
	.home .info .title {
		font-size: 44px;
	}
	
	.home .info .description {
		font-size: 18px;
	}
	
	.home .info .cta-btns a {
		padding: 16px 35px;
		font-size: 16px;
	}
	
	.home .image {
		width: 48%;
	}
	
	.home .image .icons .icon.ae,
	.home .image .icons .icon.pr {
		width: 60px;
	}
	
	.home .image .icons .icon.ps,
	.home .image .icons .icon.ai {
		width: 55px;
	}
	
	.home .image .icons .icon.lr,
	.home .image .icons .icon.au,
	.home .image .icons .icon.capcut,
	.home .image .icons .icon.canva,
	.home .image .icons .icon.affinity {
		width: 45px;
	}
	
	.header .nav-link {
		padding: 15px 35px;
		font-size: 14px;
	}
}

@media (max-width: 992px) {
	.social-icons {
		left: 15px;
		gap: 10px;
	}
	
	.social-icons .icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.home {
		min-height: auto;
		padding-top: 100px;
	}
	
	.home .container {
		padding-left: 70px;
		padding-right: 20px;
		flex-direction: column;
		text-align: center;
	}
	
	.home .info {
		padding-right: 0;
		padding-bottom: 40px;
	}
	
	.home .info .title {
		font-size: 38px;
	}
	
	.home .info .description {
		margin: 0 auto 30px;
		font-size: 16px;
	}
	
	.home .info .cta-btns {
		justify-content: center;
	}
	
	.home .info .cta-btns a {
		padding: 14px 30px;
		font-size: 14px;
	}
	
	.home .image {
		position: relative;
		width: 100%;
		height: 60vh;
		min-height: 400px;
	}
	
	.home .image .icons {
		left: 0;
	}
	
	.home .image .icons .icon.ae {
		left: 5%;
		bottom: 25%;
		width: 55px;
	}
	
	.home .image .icons .icon.pr {
		right: 5%;
		bottom: 15%;
		width: 55px;
	}
	
	.home .image .icons .icon.ps {
		right: 8%;
		top: 15%;
		width: 50px;
	}
	
	.home .image .icons .icon.ai {
		left: 0%;
		top: 35%;
		width: 50px;
	}
	
	.home .image .icons .icon.lr {
		right: 0%;
		top: 40%;
		width: 45px;
	}
	
	.home .image .icons .icon.au {
		left: 15%;
		bottom: 5%;
		width: 45px;
	}
	
	.home .image .icons .icon.capcut {
		right: 15%;
		bottom: 0%;
		width: 45px;
	}
	
	.home .image .icons .icon.canva {
		left: -5%;
		bottom: 45%;
		width: 40px;
	}
	
	.home .image .icons .icon.affinity {
		right: -5%;
		bottom: 45%;
		width: 40px;
	}
	
	.home .bg-text .scroll-text {
		font-size: 100px;
	}
	
	.header .nav-link {
		padding: 12px 25px;
		font-size: 13px;
	}
	
	.about .container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.about .image-container {
		max-width: 400px;
		margin: 0 auto;
	}
	
	.services .cards {
		grid-template-columns: 1fr;
	}
	
	.portfolio__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.portfolio__rail-wrap {
		margin: 0 -1.5rem;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.portfolio__card {
		flex: 0 0 78vw;
	}
	
	.clients .clients-grid {
		grid-template-columns: 1fr;
	}
	
	.contact .container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.social-icons {
		left: 10px;
		gap: 8px;
	}
	
	.social-icons .icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.header {
		top: 15px;
		width: calc(100% - 30px);
		max-width: none;
	}
	
	.header .container {
		width: 100%;
		justify-content: space-around;
	}
	
	.header .nav-link {
		padding: 10px 15px;
		font-size: 12px;
	}
	
	.home .container {
		padding-left: 50px;
		padding-right: 15px;
	}
	
	.home .info .title {
		font-size: 32px;
	}
	
	.home .info .description {
		font-size: 15px;
		max-width: 100%;
	}
	
	.home .info .cta-btns {
		gap: 12px;
	}
	
	.home .info .cta-btns a {
		padding: 12px 24px;
		font-size: 13px;
	}
	
	.home .image {
		height: 50vh;
		min-height: 350px;
	}
	
	.home .image .icons .icon {
		width: 40px !important;
	}
	
	.home .image .icons .icon.ai,
	.home .image .icons .icon.lr,
	.home .image .icons .icon.au,
	.home .image .icons .icon.capcut,
	.home .image .icons .icon.canva,
	.home .image .icons .icon.affinity {
		width: 35px !important;
	}
	
	.home .bg-text .scroll-text {
		font-size: 70px;
	}
	
	.section {
		padding: 70px 0;
	}
	
	.section-head h1 {
		font-size: 32px;
	}
	
	.section-head p {
		font-size: 14px;
	}
	
	.about .details .head h1 {
		font-size: 32px;
	}
	
	.about .details > p {
		font-size: 14px;
	}
	
	.about .details .numbers {
		flex-direction: row;
		gap: 30px;
	}
	
	.about .details .numbers .box h3 {
		font-size: 32px;
	}
	
	.about .details .expertise .items {
		grid-template-columns: 1fr;
	}
	
	.about .image-container .years {
		right: -10px;
		bottom: -20px;
		padding: 15px 20px;
	}
	
	.about .image-container .years h2 {
		font-size: 22px;
	}
	
	.reels-track {
		gap: 15px;
	}
	
	.reel-card {
		flex: 0 0 160px;
		width: 160px;
	}
	
	.reel-inner {
		height: 300px;
	}
	
	.reels-stats {
		gap: 30px;
		padding: 25px 20px;
		flex-wrap: wrap;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.services .card {
		padding: 30px;
	}
	
	.services .card .name {
		font-size: 20px;
	}
	
	.portfolio__rail-wrap {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}
	
	.portfolio__card {
		flex: 0 0 85vw;
		padding: 1.6rem;
	}
	
	.portfolio__intro h2 {
		font-size: clamp(2rem, 7vw, 2.6rem);
	}
	
	.contact .form {
		padding: 30px;
	}
	
	.contact .form .head h2 {
		font-size: 26px;
	}
	
	.contact .form .form-group {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.social-icons {
		display: none;
	}
	
	.home .container {
		padding-left: 15px;
	}
	
	.home .info .title {
		font-size: 26px;
	}
	
	.home .info .description {
		font-size: 14px;
	}
	
	.home .info .cta-btns {
		flex-direction: column;
		width: 100%;
	}
	
	.home .info .cta-btns a {
		width: 100%;
		text-align: center;
	}
	
	.home .image {
		height: 45vh;
		min-height: 300px;
	}
	
	.home .image .icons .icon {
		width: 45px !important;
	}
	
	.home .bg-text .scroll-text {
		font-size: 50px;
	}
	
	.header .nav-link {
		padding: 8px 12px;
		font-size: 11px;
	}
	
	.section {
		padding: 50px 0;
	}
	
	.section-head {
		margin-bottom: 40px;
	}
	
	.section-head h1 {
		font-size: 28px;
	}
	
	.about .details .head h1 {
		font-size: 28px;
	}
	
	.about .details .numbers {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.about .details .numbers .box h3 {
		font-size: 28px;
	}
	
	.reels-track {
		gap: 12px;
		padding: 20px 0;
	}
	
	.reel-card {
		flex: 0 0 140px;
		width: 140px;
	}
	
	.reel-inner {
		height: 260px;
		border-radius: 18px;
		padding: 6px;
	}
	
	.reel-media {
		border-radius: 14px;
	}
	
	.play-btn {
		width: 40px;
		height: 40px;
	}
	
	.play-btn i {
		font-size: 18px;
	}
	
	.reel-info {
		padding: 8px 4px 2px;
	}
	
	.reel-info h3 {
		font-size: 0.8rem;
	}
	
	.reel-info p {
		font-size: 0.65rem;
	}
	
	.reel-tag {
		padding: 3px 8px;
		font-size: 0.55rem;
	}
	
	.reels-stats {
		gap: 20px;
		padding: 20px 15px;
	}
	
	.stat-number {
		font-size: 1.6rem;
	}
	
	.stat-label {
		font-size: 0.75rem;
	}
	
	.clients .client-box {
		padding: 20px;
	}
	
	.clients .client-box .info .image {
		width: 50px;
		height: 50px;
	}
	
	.contact .form {
		padding: 20px;
	}
	
	.contact .form .head h2 {
		font-size: 22px;
	}
	
	.contact .methods .method {
		padding: 15px;
	}
}

@media (max-width: 400px) {
	.header .nav-link {
		padding: 6px 8px;
		font-size: 10px;
	}
	
	.home .info .title {
		font-size: 22px;
	}
	
	.home .image .icons .icon {
		width: 38px !important;
	}
	
	.section-head h1 {
		font-size: 24px;
	}
	
	.about .details .head h1 {
		font-size: 24px;
	}
	
	.reels .reel {
		width: 100px;
		height: 180px;
	}
}

/* ========================================
   Footer
======================================== */
.footer {
	background: linear-gradient(180deg, var(--bg-color) 0%, #050505 100%);
	padding: 60px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.footer-brand .logo span {
	color: var(--main-color);
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.7;
	max-width: 280px;
}

.footer-links h3,
.footer-social h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	color: var(--text-muted);
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links ul li a:hover {
	color: var(--main-color);
	padding-left: 5px;
}

.footer-social .social-links {
	display: flex;
	gap: 12px;
}

.footer-social .social-links a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
	transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
	background: var(--main-color);
	border-color: var(--main-color);
	color: var(--bg-color);
	transform: translateY(-3px);
}

.footer-social .social-links a svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	padding: 25px 0;
	text-align: center;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 14px;
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.footer-brand p {
		max-width: 100%;
	}
	
	.footer-social .social-links {
		justify-content: center;
	}
}

