* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Kumbh Sans', sans-serif;
}
.navbar {
	background: #131313;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	position: sticky;
	top: 0;
	z-index: 999;
}
.navbar__container{
	display: flex;
	justify-content: space-between;
	height: 80px;
	z-index: 1;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 50px;
}
#navbar__logo {
	background-color: #15159b ;
	background-image: linear-gradient(to top, #15159b 0%, #5ed7e2 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	display: flex;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	font-size: 2rem;
}
.fa-gem {
	margin-right: 0.5rem;
}
.navbar__menu {
	display: flex;
	align-items: center;
	list-style: none;
	text-align: center;
}
.navbar__item {
	height: 80px;
}
.navbar__links {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0 1rem;
	height: 100%;
}
.navbar__btn {
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 0 1rem;
	width: 100%;
}
.button {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px 20px;
	height: 100%;
	width: 100%;
	border: none;
	outline: none;
	border-radius: 4px;
	background: #0c0c7d;
	color: #fff;
}
.button:hover {
	background: #f07b0d;
	transition: all 0.3s ease;
}
.navbar__links:hover {
	color: #4837ff;
	transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
	.navbar__container {
		display: flex;
		justify-content: space-between;
		height: 80px;
		z-index: 1;
		width: 100%;
		max-width: 400px;
		padding: 0;
	}
	.navbar__menu {
		display: grid;
		grid-template-columns: auto;
		margin: 0;
		width: 100%;
		position: absolute;
		top: -100px;
		opacity: 0;
		transition: all 0.5s ease;
		height: 50vh;
		z-index: -1;
		background: #131313;
		pointer-events: none;
		/* 👈 prevents clicks when hidden */
	}
	.navbar__menu.active {
		background: #131313;
		top: 100%;
		opacity: 1;
		transition: all 0.5s ease;
		z-index: 99;
		height: 50vh;
		font-size: 1.6rem;
		pointer-events: auto;
		/* 👈 re-enable clicks when open */
	}
	#navbar__logo{
		padding-left: 25px;
	}
	.navbar__toggle .bar {
		width:25px;
		height: 3px;
		margin: 5px auto;
		transition: all 0.3s ease-in-out;
		background: #fff;
	}
	.navbar__item {
		width: 100%;
	}
	.navbar__links {
		text-align: center;
		padding: 2rem;
		width: 100%;
		display: table;
	}
	#mobile-menu {
		position: absolute;
		top: 20%;
		right: 5%;
		transform: translate(5%, 20%);
	}
	.navbar__btn {
		padding-bottom: 2rem;
	}
	.button {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80%;
		height: 80px;
		margin: 0;
	}
	.navbar__toggle .bar {
		display: block;
		cursor: pointer;
	}
	#mobile-menu.is-active .bar:nth-child(2) {
		opacity: 0;
	}
	#mobile-menu.is-active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	#mobile-menu.is-active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}
/* Hero Section CSS */
.main {
	background-color: #fafafa;
}
.main__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-self: center;
	margin: 0 auto;
	height: 90vb;
	background-color: #fafafa;
	z-index: 1;
	width: 100%;
	max-width: 1300px;
	padding: 0 50px;
}
.main__content h1 {
	font-size: 4rem;
	background-color: #4837ff;
	background-image: linear-gradient(to top, #15159b, #5ed7e2 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-colour: transparent;
}
.main__container h2 {
	font-size: 4rem;
	background-color: #4837ff;
	background-image: linear-gradient(to top, #902007, #f07b0d 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-colour: transparent;
}
.main__content p {
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: 700;
	color: #151515;
}
.main__btn {
	font-size: 1rem;
	background-image: linear-gradient(to top, #15159b, #4837ff 100%);
	padding: 14px 32px;
	border: none;
	border-radius: none;
	color: #fff;
	margin-top: 2rem;
	cursor: pointer;
	position: relative;
	transition: all 0.35;
	outline: none;
}
.main__btn a {
	position: relative;
	z-index: 2;
	color: #fff;
	text-decoration: none;
}
.main__btn::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #f07b0d;
	transition: all 0.35s;
	border-radius: 4px;
}
.main__btn:hover {
	color: #fff;
}
.main__btn:hover:after {
	width: 100%;
}
.main__img--container {
	text-align: center;
}
#main__img {
	height: 100%;
	width: 100%;
}
/* Mobile Responsive */
@media screen and (max-width:768px) {
	.main__container {
		display: grid;
		grid-template-columns: auto;
		align-items: center;
		justify-self: center;
		width: 100%;
		margin: 0 auto;
		height: 90vb;
	}
	.main__content {
		text-align: center;
		margin-bottom: 4rem;
	}
	.main__content h1 {
		font-size: 2.5rem;
		margin-top: 2rem;
	}
	.main__content h2 {
		font-size: 3rem;
	}
	.main__content p {
		margin-top: 1rem;
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 480px) {
	.main__content h1 {
		font-size: 2rem;
		margin-top: 3rem;
	}
	.main__content h2 {
		font-size: 2rem;
	}
	.main__content p {
		margin-top: 2rem;
		font-size: 1.5rem;
	}
	.main__btn {
		padding: 12px 36px;
		margin: 2.5rem 0;
	}
}
.info {
	background-color: #ffffff;
	padding: 4rem 2rem;
	text-align: center;
}
.info__container {
	max-width: 1100px;
	margin: auto;
}
.info__container h2 {
	font-size: 2.5rem;
	color: #15159b;
	margin-bottom: 1rem;
}
.info__container h3 {
	font-size: 2rem;
	color: #0c0c7d;
	margin-top: 2rem;
}
.info__container p {
	font-size: 1.1rem;
	margin-top: 1rem;
	color: #333;
	line-height: 1.7;
}
.info__list {
	list-style: none;
	padding-left: 0;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.info__list li {
	font-size: 1rem;
	margin: 0.5rem 0;
	color: #333;
}
.btn-secondary {
	margin-top: 2rem;
	background: #f07b0d;
	color: #fff;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
}
.btn-secondary:hover {
	background: #d66800;
	transition: all 0.3s ease;
}
.footer {
	text-align: center;
	padding: 2rem;
	background-color: #f5f5f5;
	font-style: italic;
	color: #555;
}
blockquote {
	background: #f9f9f9;
	border-left: 5px solid #f07b0d;
	margin: 1.5rem auto;
	padding: 1rem 1.5rem;
	font-style: italic;
	color: #444;
}
blockquote footer {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #777;
}
h4 {
	color: #0c0c7d;
	margin-top: 2rem;
	font-size: 1.3rem;
}
.projects {
	padding: 4rem 2rem;
	background: #fff;
	color: #111;
}
.projects__container {
	max-width: 1200px;
	margin: 0 auto;
}
.projects__title {
	font-size: 2.5rem;
	color: #15159b;
	margin-bottom: 0.5rem;
	text-align: left;
}
.projects__subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #555;
	text-align: left;
}
.projects__intro h2 {
	color: #0c0c7d;
	margin-bottom: 0.5rem;
}
.projects__intro p {
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #333;
}
.projects__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.project__category h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #f07b0d;
}
.project__category ul {
	padding-left: 1.2rem;
	list-style-type: disc;
	color: #333;
}
.projects__testimonials {
	margin-top: 3rem;
}
.projects__testimonials h2 {
	color: #0c0c7d;
	margin-bottom: 1rem;
}
blockquote {
	background: #f9f9f9;
	border-left: 4px solid #f07b0d;
	margin: 1rem 0;
	padding: 1rem 1.5rem;
	font-style: italic;
}
blockquote footer {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #777;
}
.projects__cta {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.btn-secondary {
	background: #f07b0d;
	color: #fff;
	padding: 12px 20px;
	text-decoration: none;
	border-radius: 4px;
}
.btn-secondary:hover {
	background-color: #d86a00;
}
.info {
	padding: 4rem 2rem;
	background: #fff;
}
.info__container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
}
.info__container h2 {
	font-size: 2rem;
	color: #15159b;
	margin-bottom: 1rem;
}
.info__split {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2rem;
}
.info__column {
	flex: 1;
	min-width: 280px;
	overflow: hidden;
}
.info__column h3 {
	font-size: 1.3rem;
	color: #f07b0d;
	margin-bottom: 0.5rem;
}
.info__list {
	list-style-type: disc;
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}
.info__column p {
	margin-bottom: 1.5rem;
	color: #444;
}
.info__column .button {
	font-size: 1rem;
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
	display: inline-block;
}
.button-small {
	font-size: 1rem;
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
}
.info__column .button {
	font-size: 0.95rem;
	padding: 0.4rem 1rem;
	/* smaller top/bottom padding */
	line-height: 1.2;
	/* reduce vertical spacing inside text */
	max-width: fit-content;
	display: inline-block;
	margin-top: 1rem;
	white-space: nowrap;
	border-radius: 4px;
}
.info__column .button,.info__column .btn-secondary {
	font-size: 0.95rem !important;
	padding: 0.4rem 1rem !important;
	line-height: 1.2 !important;
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	max-width: fit-content;
	white-space: nowrap;
	border-radius: 4px;
	margin-top: 1rem;
	box-sizing: border-box;
}
.image-carousel {
	width: 100%;
	overflow: hidden;
	background: #f8f8f8;
	padding: 1rem 0;
	/* adds breathing space vertically */
}
.carousel-track {
	display: flex;
	gap: 1rem;
	/* space between images */
	padding: 0 1rem;
	/* small side padding so first/last aren’t touching edges */
}
.carousel-track img {
	flex-shrink: 0;
	width: 30vw;
	/* slightly larger images (was 20vw) */
	height: 300px;
	/* taller for a stronger visual presence */
	object-fit: cover;
	border-radius: 8px;
	/* optional — rounded corners look clean */
	background: #fff;
	/* ensures the gap looks white even on grey background */
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	/* subtle shadow for depth */
	transition: transform 0.3s ease;
}
.carousel-track img:hover {
	transform: scale(1.03);
	/* gentle zoom on hover for interactivity */
}
/* Fullscreen blurred background slideshow */
body {
	position: relative;
	min-height: 100vh;
	margin: 0;
	font-family: 'Kumbh Sans', sans-serif;
	overflow-x: hidden;
}
.background-slideshow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}
.background-slideshow img {
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100vw + 20px);
	height: calc(100vh + 20px);
	object-fit: cover;
	filter: blur(5px);
	opacity: 0;
	transition: opacity 3s ease-in-out;
}
.background-slideshow img.active {
	opacity: 1;
	z-index: 1;
}
.projects {
	position: relative;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.7);
	/* subtle overlay so text is readable */
	backdrop-filter: blur(3px);
	padding: 2rem;
	border-radius: 10px;
	margin: 2rem auto;
	max-width: 1200px;
}
.info {
	background: rgba(255,255,255,0.92);
	/* subtle white panel */
	color: #111;
	/* dark text for content */
}
/* Ensure container text uses dark colours */
.info__container,.info__container h2,.info__container h3,.info__container p,.info__container li {
	color: #111 !important;
}
/* Contact cards: white cards with subtle shadow and dark text */
.contact__details {
	margin-top: 1.5rem;
}
.contact__item {
	background: #ffffff;
	/* white card */
	color: #111;
	/* dark text */
	border-radius: 12px;
	padding: 1.25rem;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Slight lift on hover */
.contact__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}
/* Headings inside cards */
.contact__item h3 {
	color: #15159b;
	/* strong brand/dark-blue accent */
	margin-bottom: 0.4rem;
	font-weight: 700;
}
/* Primary text inside cards */
.contact__item p {
	color: #1f2937;
	/* near-black for best contrast */
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
}
/* Links styled in brand colour, accessible contrast */
.contact__item a {
	color: #0c0c7d;
	text-decoration: underline;
}
.contact__item a:hover {
	color: #f07b0d;
	text-decoration: none;
}
/* If you have a global ".button" style that is white text on dark background,leave it, but make sure these small inline text blocks aren't picking that up. */
.info .button,.info .button.btn-secondary {
	background: #f07b0d;
	color: #fff;
	padding: 0.5rem 1rem;
	display: inline-block;
	border-radius: 6px;
}
/* Footer: keep footer visually distinct and readable */
.footer {
	background: #15159b;
	color: #ffffff;
	text-align: center;
	padding: 1.5rem 1rem;
}
/* Responsive sanity checks */
@media (max-width: 640px) {
	.contact__details {
		grid-template-columns: 1fr;
	}
	.contact__item {
		padding: 1rem;
	}
}
/* Make small headers more subtle */
.contact__item h3 {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #15159b;
}
/* Map container */
.map__container {
	margin-top: 3rem;
	text-align: left;
}
.map__container h3 {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	color: #15159b;
}
.map__address {
	margin-top: 0.75rem;
	color: #333;
	font-size: 0.95rem;
}
/* Live status indicator */
#office-status {
	margin-left: 0.4rem;
	font-weight: 700;
	font-size: 0.9rem;
}
/* GELLERY */
.projects__gallery {
	padding: 4rem 2rem;
	text-align: center;
	color: #fff;
	background: transparent;
	/* no extra background */
	position: relative;
	z-index: 2;
	/* keep above slideshow */
}
/* Removed ::before pseudo-element since section already has background */
.projects__gallery h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
	color: #000000;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
/* Masonry Layout */
.masonry-gallery {
	column-count: 3;
	column-gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.masonry-gallery img {
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: inline-block;
	break-inside: avoid;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
	background: #222;
	/* fallback for unloaded images */
}
.masonry-gallery img:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
/* Responsive Columns */
@media screen and (max-width: 960px) {
	.masonry-gallery {
		column-count: 2;
	}
}
@media screen and (max-width: 600px) {
	.masonry-gallery {
		column-count: 1;
	}
}
