/* ------------------- */
/* HERO SECTION        */
/* ------------------- */
.hero {
	position: relative;
	height: calc(80vh - var(--header-height));
	min-height: 706px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
	padding: 0 1.5rem;
	margin-top: var(--header-height);
	width: 100vw;
}

/* Background video (now iframe) */
.hero-video {
	position: absolute;
	aspect-ratio: 16/9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* these two lines make sure it always covers the hero */
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1;
	border: none;
}

/* Optional overlay for readability */
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 0;
}

.hero-bg {
	display: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

/* Remove any text shadow */
.hero h1,
.hero-heading,
.hero-title-text,
.hero p {
	text-shadow: none;
}

/* ------------------- */
/* HERO TITLE - CRACKED TEXTURE EFFECT */
/* ------------------- */
.hero-heading {
	margin-bottom: 2rem;
	position: relative;
}

.hero-title-text {
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: clamp(2.5rem, 12vw, 7rem);
	line-height: 1.1;
	position: relative;

	/* Create the cracked/weathered text effect */
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	/* Add text stroke for better definition */
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);

	/* Multiple shadows for depth */
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* FILM PRODUCTION IN -> white/light texture with cracks */
.hero-title-text-white {
	background-image: url("../Images/white-image-texture.png");
	/* Stack multiple blend modes for the cracked effect */
	background-blend-mode: multiply, overlay;
	mix-blend-mode: screen;
}

/* MOROCCO -> orange texture with cracks */
.hero-title-text-orange {
	background-image: url("../Images/orange-grunge-texture.png");
	background-blend-mode: multiply, hard-light;
	mix-blend-mode: normal;
	margin-top: 0.25rem;
}

/* Alternative method: Use mask for more control over the crack effect */
.hero-title-text-white.with-mask {
	-webkit-mask-image: url("../Images/white-image-texture.png");
	-webkit-mask-size: cover;
	mask-image: url("../Images/white-image-texture.png");
	mask-size: cover;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.hero-title-text-orange.with-mask {
	-webkit-mask-image: url("../Images/orange-grunge-texture.png");
	-webkit-mask-size: cover;
	mask-image: url("../Images/orange-grunge-texture.png");
	mask-size: cover;
	background: linear-gradient(135deg, var(--color-primary) 0%, #ff8800 100%);
}

.hero p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 2.5rem auto;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	font-weight: 300;
}

/* ------------------- */
/* RESPONSIVE HERO     */
/* ------------------- */
@media (max-width: 768px) {
	.hero {
		height: auto;
		min-height: calc(100vh - var(--header-height));
		padding: 4rem 1.5rem 3rem;
		margin-top: 0;
		padding-top: calc(var(--header-height) + 3rem);
	}

	.hero-title-text {
		font-size: clamp(2rem, 10vw, 3.5rem);
		letter-spacing: 0.08em;
		-webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 50vh;
		padding-top: calc(var(--header-height) + 2rem);
	}

	.hero-title-text {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
		letter-spacing: 0.06em;
	}

	.hero-heading {
		margin-bottom: 1.5rem;
	}
}

/* ------------------- */
/* LANDSCAPE MOBILE FIX */
/* ------------------- */
@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		min-height: 100vh;
		height: auto;
		padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
	}

	.hero-title-text {
		font-size: clamp(1.5rem, 8vw, 2.5rem);
	}
} /* ------------------- */
/* WHY ARTLY SECTION   */
/* ------------------- */
.why-artly-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
}

@media (max-width: 768px) {
	.why-artly-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.why-artly-content h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: white;
}

.why-artly-list {
	list-style: none;
	padding-left: 0;
	margin-top: 2rem;
}

.why-artly-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.why-artly-list li svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--color-primary);
	margin-right: 1rem;
	margin-top: 0.2rem;
}

.why-artly-image img {
	border-radius: 0.5rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ------------------- */
/* WORK TEASER SECTION */
/* ------------------- */
.work-teaser-description {
	/* max-width: 800px; */
	margin: 0 auto 3rem auto;
	font-size: 1.5rem;
	color: #ffff;
	font-style: italic;
}

.work-teaser-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
	background-color: var(--color-dark);
}

.work-teaser-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.work-teaser-card:hover img {
	transform: scale(1.05);
	opacity: 0.8;
}

.work-teaser-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	color: white;
	background: linear-gradient(to top, rgba(17, 24, 39, 0.8), transparent);
}

.work-teaser-overlay h3 {
	transform: translateY(calc(100% + 1.5rem));
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-teaser-card:hover .work-teaser-overlay h3 {
	transform: translateY(0);
}
@media (min-width: 991px) {
	.work-teaser-description {
		text-align: right;
		margin-bottom: 20px !important;
	}
}

/* =============================================== */
/* ENHANCED RÉALISATIONS SECTION - TEXT OVERLAY   */
/* =============================================== */

.realisations-section {
	background-color: var(--color-light-dark);
}

.realisations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
	grid-auto-rows: 320px;
}

/* =============================================== */
/* CARD VARIANTS                                   */
/* =============================================== */
.realisations-card {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
	background-color: var(--color-dark);
	height: 100%;
	aspect-ratio: auto !important;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.realisations-card-vertical {
	grid-column: span 2;
}

.realisations-card-hero {
	grid-column: span 2;
	grid-row: span 1;
}

.realisations-card-large {
	grid-column: span 2;
	grid-row: span 1;
}

/* =============================================== */
/* BACKGROUND IMAGE                                */
/* =============================================== */
.realisations-card-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.realisations-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: block;
}
.Timrt img {
	object-position: right;
}

.realisations-card:hover .realisations-card-image img {
	transform: scale(1.08);
}

/* =============================================== */
/* ENHANCED TEXT OVERLAY - ALWAYS VISIBLE         */
/* =============================================== */
.realisations-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2.5rem 2rem;
	color: white;
	opacity: 1;
	transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.realisations-card:hover .realisations-card-overlay {
	background: rgba(0, 0, 0, 0.35);
}

/* =============================================== */
/* CONTENT WRAPPER - 50/50 SPLIT ON DESKTOP       */
/* =============================================== */
.overlay-content-wrapper {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.overlay-content-wrapper .overlay-description {
	flex: 0 0 50%;
	max-width: 50%;
}

.overlay-content-wrapper .overlay-info-boxes {
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 0;
	margin-left: 0;
	align-self: flex-start;
}

/* =============================================== */
/* TITLE SECTION - TOP LEFT                        */
/* =============================================== */
.overlay-title-section {
	margin-bottom: auto;
}

.overlay-category {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
	line-height: 1.1;
	/* Apply the textured effect like in the hero */
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: contain;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	text-shadow: none;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.overlay-project-title {
	/* font-family: Georgia, "Times New Roman", serif; */
	margin-left: 73px;
	margin-top: -20px;
	font-size: clamp(1.75rem, 4vw, 2rem);
	font-weight: 400;
	font-style: italic;
	color: white;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
	z-index: 9999;
	position: relative;
}

/* =============================================== */
/* DESCRIPTION TEXT                                */
/* =============================================== */
.overlay-description {
	font-size: clamp(0.75rem, 1.5vw, 0.9rem);
	line-height: 1.6;
	color: white;
	text-align: justify;
	margin-bottom: 1.5rem;
	max-width: 60%;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* =============================================== */
/* PREVIEW IMAGES ROW                              */
/* =============================================== */
.overlay-preview-images {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	max-width: 50%;
}

.overlay-preview-images img {
	width: 140px;
	height: 90px;
	object-fit: cover;
	border-radius: 0.25rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.overlay-preview-images img:hover {
	border-color: #f0a61e;
	transform: scale(1.05);
}

/* =============================================== */
/* INFO BOXES - BOTTOM RIGHT                       */
/* =============================================== */
.overlay-info-boxes {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-self: flex-end;
	margin-left: auto;
	max-width: 50%;
}

.info-box {
	padding: 0.75rem 1rem;
	border-radius: 0.25rem;
}

.info-box-title {
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background-color: var(--color-primary-2);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.info-box-content {
	font-size: 0.7rem;
	line-height: 1.4;
	color: var(--color-text-muted);
	margin: 0;
	text-align: center;
}

/* =============================================== */
/* RESPONSIVE - DESKTOP (992px and up)            */
/* =============================================== */
@media (min-width: 992px) {
	.overlay-description {
		max-width: 50%;
	}

	/* Keep flex layout on desktop */
	.overlay-content-wrapper {
		display: flex;
	}
}

/* =============================================== */
/* RESPONSIVE - TABLET                             */
/* =============================================== */
@media (max-width: 992px) {
	.realisations-grid {
		grid-auto-rows: 280px;
	}

	.realisations-card-overlay {
		padding: 2rem 1.5rem;
	}

	.overlay-category {
		font-size: clamp(1.25rem, 4vw, 1.75rem);
	}

	.overlay-project-title {
		font-size: clamp(1.5rem, 5vw, 2.25rem);
	}

	/* Switch to stacked layout on tablet */
	.overlay-content-wrapper {
		display: block;
	}

	.overlay-content-wrapper .overlay-description,
	.overlay-content-wrapper .overlay-info-boxes {
		flex: none;
		max-width: 100%;
	}

	.overlay-description {
		max-width: 55%;
		font-size: 0.7rem;
	}

	.overlay-preview-images {
		max-width: 60%;
	}

	.overlay-preview-images img {
		width: 110px;
		height: 70px;
	}

	.overlay-info-boxes {
		max-width: 60%;
	}
}

/* =============================================== */
/* RESPONSIVE - MOBILE                             */
/* =============================================== */
@media (max-width: 768px) {
	.realisations-card-hero,
	.realisations-card-large {
		grid-column: span 2;
		aspect-ratio: 3/4;
	}

	.realisations-grid {
		grid-auto-rows: 400px;
	}

	.realisations-card-overlay {
		padding: 1.5rem 1.25rem;
	}

	.overlay-category {
		font-size: 1.25rem;
		margin-bottom: 0.15rem;
	}

	.overlay-project-title {
		font-size: 1.75rem;
		margin-bottom: 0.5rem;
	}

	.overlay-title-section {
		margin-bottom: 0.5rem;
	}

	/* Mobile stacked layout */
	.overlay-content-wrapper {
		display: block;
	}

	.overlay-content-wrapper .overlay-description,
	.overlay-content-wrapper .overlay-info-boxes {
		max-width: 100%;
	}

	.overlay-description {
		max-width: 100%;
		font-size: 0.75rem;
		margin-bottom: 1rem;
		margin-top: 0;
	}

	.overlay-preview-images {
		max-width: 100%;
		gap: 0.75rem;
	}

	.overlay-preview-images img {
		width: 90px;
		height: 60px;
	}

	.overlay-info-boxes {
		max-width: 50%;
		float: right;
		margin-left: auto;
	}

	.info-box {
		padding: 0.6rem 0.85rem;
	}

	.info-box-title {
		font-size: 0.65rem;
	}

	.info-box-content {
		font-size: 0.6rem;
	}
	.overlay-description {
		position: absolute;
		top: 89px;
		right: 69px;
		left: 16px;
	}
}

/* =============================================== */
/* RESPONSIVE - SMALL MOBILE                       */
/* =============================================== */
@media (max-width: 480px) {
	.realisations-grid {
		grid-auto-rows: 450px;
	}

	.realisations-card-overlay {
		padding: 1.25rem 1rem;
	}

	.overlay-category {
		font-size: 1.1rem;
	}

	.overlay-project-title {
		font-size: 1.5rem;
		margin-top: -15px;
	}

	.overlay-description {
		font-size: 0.7rem;
		line-height: 1.5;
	}

	.overlay-preview-images {
		flex-direction: column;
		gap: 0.5rem;
	}

	.overlay-preview-images img {
		width: 100%;
		height: 80px;
	}

	.info-box {
		padding: 0.5rem 0rem;
	}

	.info-box-title {
		font-size: 0.6rem;
	}

	.info-box-content {
		font-size: 0.55rem;
	}
}

/* =============================================== */
/* LANDSCAPE ORIENTATION                           */
/* =============================================== */
@media (max-height: 500px) and (orientation: landscape) {
	.realisations-card-overlay {
		padding: 1rem 1.5rem;
	}

	.overlay-category {
		font-size: 1.25rem;
	}

	.overlay-project-title {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}

	.overlay-description {
		font-size: 0.7rem;
		margin-bottom: 0.75rem;
	}

	.overlay-preview-images {
		display: none; /* Hide on landscape mobile */
	}
}

/* ------------------- */
/* ABOUT US SECTION    */
/* ------------------- */
.about-us-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

/* LEFT COLUMN - About Us Content */
.about-us-left {
	padding-right: 1rem;
}

.about-us-header {
	margin-bottom: 2rem;
}

.about-us-title {
	margin: 0;
	line-height: 1.2;
}

.bg-white {
	background-color: var(--color-white);
}
.about-title-main {
	display: block;
	font-size: var(--text-title-size);
	font-weight: 900;
	color: var(--color-primary);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	/* Apply texture effect like hero */
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
}

.about-title-subtitle {
	display: block;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 400;
	color: var(--color-dark);
	font-style: italic;
	line-height: 1.4;
	margin-bottom: 0.25rem;
	/* text-align: right; */
}

.about-title-location {
	display: block;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--color-primary-2);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	/* text-align: right; */
	font-style: italic;
}

.about-us-description {
	text-align: justify;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-dark);
	margin-bottom: 2rem;
	text-align: justify;
}

.about-us-description strong {
	color: var(--color-dark);
	font-weight: 600;
}

.about-us-specialization {
	background: rgba(240, 166, 30, 0.05);
	border-left: 4px solid var(--color-primary);
	padding: 1.5rem;
	border-radius: 0.5rem;
}

.specialization-title {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 1rem;
	text-transform: none;
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

.specialization-list li {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-dark);
	margin-bottom: 0.5rem;
	padding-left: 0;
	line-height: 1.6;
}

.specialization-list li:last-child {
	margin-bottom: 0;
}

/* RIGHT COLUMN - We Provide Box */
.about-us-right {
	padding-left: 1rem;
}

.about-us-box {
	background: linear-gradient(135deg, rgba(240, 166, 30, 0.1) 0%, rgba(169, 30, 34, 0.05) 100%);
	border: 2px solid var(--color-primary);
	border-radius: 0.5rem;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-box-intro {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--color-dark);
	margin-bottom: 1.5rem;
	text-align: justify;
}

.about-box-intro strong {
	color: var(--color-dark);
	font-weight: 700;
}

.we-provide-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--color-primary);
	margin: 2rem 0 1.5rem 0;
	text-transform: none;
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.we-provide-list {
	list-style: none;
	counter-reset: provide-counter;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.we-provide-list li {
	counter-increment: provide-counter;
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-dark);
}

.we-provide-list li::before {
	content: counter(provide-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--color-primary);
}

.we-provide-list li strong {
	color: var(--color-dark);
	font-weight: 700;
}

.about-box-conclusion {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--color-dark);
	margin-bottom: 1.5rem;
	text-align: justify;
}

.about-box-conclusion strong {
	color: var(--color-dark);
	font-weight: 700;
}

.about-box-tagline {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-dark);
	margin: 0;
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(240, 166, 30, 0.3);
}

.about-box-tagline strong {
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1.05rem;
}

/* ------------------- */
/* RESPONSIVE          */
/* ------------------- */
@media (max-width: 992px) {
	.about-us-section {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-us-left,
	.about-us-right {
		padding: 0;
	}

	.about-us-box {
		padding: 2rem;
	}

	.about-title-main {
		font-size: clamp(6vw, 10vw, 2.5rem);
	}
}

@media (max-width: 768px) {
	.about-us-section {
		gap: 2rem;
	}

	.about-us-box {
		padding: 1.5rem;
	}

	.about-us-description,
	.about-box-intro,
	.about-box-conclusion {
		text-align: justify;
	}

	.specialization-list li {
		font-size: 1rem;
	}

	.we-provide-list li {
		font-size: 0.9rem;
		padding-left: 2rem;
	}
}

@media (max-width: 480px) {
	.about-title-main {
		font-size: clamp(6vw, 10vw, 2.5rem);
	}

	.about-title-subtitle {
		font-size: 1rem;
	}

	.about-title-location {
		font-size: 1.25rem;
	}

	.about-us-specialization {
		padding: 1rem;
	}

	.about-us-box {
		padding: 1.25rem;
	}

	.we-provide-title {
		font-size: 1.25rem;
		margin: 1.5rem 0 1rem 0;
	}
}
/* ------------------- */
/* OUR EXPERIENCE SECTION */
/* ------------------- */
.our-experience-section {
	position: relative;
	overflow: hidden;
	background-color: var(--color-dark);
}

.experience-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	min-height: 600px;
}

/* Left Side - Full Width Background Image */
.experience-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.experience-image::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.95) 100%);
	z-index: 2;
}

.experience-image img {
	width: 100%;
	height: 100%;
	min-height: 600px;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Right Side - Content Overlay */
.experience-content {
	position: relative;
	z-index: 3;
	padding: 4rem 2rem 4rem 50%;
	color: var(--color-text);
	min-height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.experience-title {
	font-size: var(--text-title-size);
	font-weight: 900;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2rem;
	line-height: 1.1;

	/* Apply the textured effect like in the hero */
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: contain;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	text-shadow: none;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.experience-intro {
	margin-bottom: 2rem;
}

.experience-intro p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	text-align: left;
}

.experience-intro p:last-child {
	margin-bottom: 0;
}

.experience-intro strong {
	color: var(--color-white);
	font-weight: 600;
}

.experience-highlights {
	/* margin-top: 2rem; */
}
.experience-intro p {
	text-align: justify;
	text-justify: inter-word; /* optional, helps spacing between words */
}

.experience-column p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--color-text);
	margin-bottom: 1rem;
}

.experience-column ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 1.5rem 0;
}

.experience-column ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--color-text);
}

.experience-column ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
	font-size: 1.2rem;
}

.experience-conclusion {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(240, 166, 30, 0.2);
}

.experience-conclusion p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--color-text);
	text-align: left;
}

/* ------------------- */
/* RESPONSIVE - TABLET */
/* ------------------- */
@media (max-width: 992px) {
	.experience-content {
		padding: 3rem 2rem;
		min-height: 500px;
	}

	.experience-image img {
		min-height: 500px;
	}

	.experience-image::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.95) 100%);
	}

	.experience-title {
		font-size: clamp(2rem, 6vw, 3rem);
		margin-bottom: 1.5rem;
	}
}

/* ------------------- */
/* RESPONSIVE - MOBILE */
/* ------------------- */
@media (max-width: 768px) {
	.experience-wrapper {
		min-height: auto;
	}

	.experience-image {
		position: relative;
		height: auto;
		min-height: 350px;
	}

	.experience-image img {
		min-height: 350px;
	}

	.experience-image::before {
		background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%);
	}

	.experience-content {
		position: relative;
		padding: 2rem 1.5rem;
		min-height: auto;
	}

	.experience-title {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
		margin-bottom: 1.25rem;
	}

	.experience-intro p,
	.experience-column p,
	.experience-conclusion p {
		font-size: 0.9rem;
		line-height: 1.7;
	}

	.experience-column ul li {
		font-size: 0.85rem;
		padding-left: 1.25rem;
		margin-bottom: 0.6rem;
	}

	.experience-highlights {
		margin-top: 1.5rem;
	}

	.experience-conclusion {
		margin-top: 1.25rem;
		padding-top: 1.25rem;
	}
}

/* ------------------- */
/* RESPONSIVE - SMALL MOBILE */
/* ------------------- */
@media (max-width: 480px) {
	.experience-image {
		min-height: 300px;
	}

	.experience-image img {
		min-height: 300px;
	}

	.experience-content {
		padding: 1.5rem 0rem;
	}

	.experience-title {
		font-size: clamp(1.5rem, 9vw, 2rem);
		margin-bottom: 1rem;
	}

	.experience-intro {
		margin-bottom: 1.5rem;
	}

	.experience-intro p,
	.experience-column p,
	.experience-conclusion p {
		font-size: 0.85rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}

	.experience-column ul {
		margin: 0.75rem 0 1rem 0;
	}

	.experience-column ul li {
		font-size: 0.8rem;
		padding-left: 1rem;
		margin-bottom: 0.5rem;
	}

	.experience-column ul li::before {
		font-size: 1rem;
	}
}

/* ------------------- */
/* LANDSCAPE ORIENTATION FIX */
/* ------------------- */
@media (max-height: 500px) and (orientation: landscape) {
	.experience-wrapper {
		min-height: 100vh;
	}

	.experience-image img {
		min-height: 100vh;
	}

	.experience-content {
		padding: 2rem 1.5rem 2rem 50%;
		min-height: 100vh;
	}
}

/* ------------------- */
/* LARGE DESKTOP OPTIMIZATION */
/* ------------------- */
@media (min-width: 1400px) {
	.experience-content {
		padding: 5rem 3rem 5rem 55%;
		max-width: 1600px;
		margin: 0 auto;
	}
}

/* ==================== */
/* PARTNERS SECTION     */
/* ==================== */
.partners-section {
	overflow: hidden;
}

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

.partners-slider-wrapper {
	overflow: hidden;
	padding: 2rem 0;
	position: relative;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.partners-slider-wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--color-white), transparent);
}

.partners-slider-wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--color-white), transparent);
}

.partners-slider {
	display: flex;
	gap: 4rem;
	animation: scroll-partners 30s linear infinite;
	width: fit-content;
}

.partner-logo {
	flex-shrink: 0;
	width: 180px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

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

/* Pause animation on hover */
.partners-slider:hover {
	animation-play-state: paused;
}

/* Responsive Partners Section */
@media (max-width: 992px) {
	.partner-logo {
		width: 150px;
		height: 80px;
	}

	.partners-slider {
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.partner-logo {
		width: 120px;
		height: 70px;
	}

	.partners-slider {
		gap: 2rem;
		animation: scroll-partners 20s linear infinite;
	}

	.partners-title {
		margin-bottom: 2rem;
	}
}

@media (max-width: 480px) {
	.partner-logo {
		width: 100px;
		height: 60px;
		padding: 0.5rem;
	}

	.partners-slider {
		gap: 1.5rem;
	}

	.partners-slider-wrapper::before,
	.partners-slider-wrapper::after {
		width: 50px;
	}
}

/* ==================== */
/* LOAD ANIMATIONS      */
/* ==================== */

/* Fade in from bottom */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fade in from left */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Fade in from right */
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scale in */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Fade in only */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Apply animations on page load */
.load-animate {
	opacity: 0;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header animation */
.header {
	animation: fadeIn 0.6s ease-out forwards;
}

/* Hero animations */
.hero-heading {
	animation: fadeInUp 1s ease-out 0.3s forwards;
	opacity: 0;
}

/* About section animations */
.about-us-left {
	animation: fadeInLeft 0.8s ease-out 0.2s forwards;
	opacity: 0;
}

.about-us-right {
	animation: fadeInRight 0.8s ease-out 0.4s forwards;
	opacity: 0;
}

/* Experience section animations */
.experience-image {
	animation: fadeInLeft 0.9s ease-out 0.2s forwards;
	opacity: 0;
}

.experience-content {
	animation: fadeInRight 0.9s ease-out 0.4s forwards;
	opacity: 0;
}

/* Work teaser animations */
.work-teaser-description {
	animation: fadeInUp 0.7s ease-out 0.2s forwards;
	opacity: 0;
}

/* Stagger animation for cards */
.realisations-card:nth-child(1) {
	animation: scaleIn 0.6s ease-out 0.3s forwards;
	opacity: 0;
}

.realisations-card:nth-child(2) {
	animation: scaleIn 0.6s ease-out 0.4s forwards;
	opacity: 0;
}

/* Team section animations */
.section-title {
	animation: fadeInUp 0.7s ease-out 0.2s forwards;
	opacity: 0;
}

.team-card-professional:nth-child(1) {
	animation: fadeInUp 0.7s ease-out 0.3s forwards;
	opacity: 0;
}

.team-card-professional:nth-child(2) {
	animation: fadeInUp 0.7s ease-out 0.4s forwards;
	opacity: 0;
}

.team-card-professional:nth-child(3) {
	animation: fadeInUp 0.7s ease-out 0.5s forwards;
	opacity: 0;
}

/* Footer animation */
footer {
	animation: fadeIn 0.8s ease-out 0.6s forwards;
	opacity: 0;
	padding: 33px 0;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	.load-animate,
	.header,
	.hero-heading,
	.about-us-left,
	.about-us-right,
	.experience-image,
	.experience-content,
	.work-teaser-description,
	.realisations-card,
	.section-title,
	.team-card-professional,
	footer {
		animation: none !important;
		opacity: 1 !important;
	}
}
