:root {
	--tq-primary: #135e73;
	--tq-dark: #1f242f;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
}

.hero-section {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background: url('../img/Hero Section (2).webp') no-repeat center/cover;
	margin-bottom: 0px;
}

.navigation {
	position: relative;
	width: 100%;
	padding: 10px 20px;
	z-index: 10;
	background-color: #1F242F;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo1 img {
	max-width: 180px;
	height: auto;
	display: block;
}

@media (min-width:1200px) {
	.logo1 img {
		max-width: 200px;
	}
}

@media (min-width:1600px) {
	.logo1 img {
		max-width: 240px;
	}
}

.nav-menu .nav-list {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	align-items: center;
	margin: 0;
	margin-left: 2.5rem;
	padding: 0.5rem 1rem;
	background-color: rgba(240, 252, 255, 0.07);
	border-radius: 10px;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 14px;
	padding: 4px 14px;
	border-radius: 5.33px;
	transition: background-color .3s;
}

.nav-list a.active {
	color: white;
	font-weight: 60;
	background: rgba(240, 240, 240, 0.25);
}

.nav-menu a:hover,
.nav-list .active a {
	background-color: rgba(240, 252, 255, 0.15);
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

:root {
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#mobileNav.collapse.show {
	display: block;
	position: static;
	width: 100%;
	background-color: #1F242F;
	padding: 10px 0;
	border-radius: 0 0 10px 10px;
}

#mobileNav ul li a {
	color: white;
	display: block;
	padding: 10px 20px;
	text-decoration: none;
}

#mobileNav ul li a:hover {
	background-color: rgba(240, 252, 255, 0.15);
}

@media (max-width:992px) {
	.nav-menu {
		display: none;
	}

	.navigation {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px 15px;
	}

	.nav-menu .nav-list {
		flex-direction: column;
		width: 100%;
		margin-left: 0;
		padding: 0.8rem 0;
		background: none;
	}

	.nav-menu a {
		display: block;
		width: 100%;
		text-align: left;
		padding: 10px 15px;
	}
}

@media (max-width:576px) {
	.logo1 img {
		max-width: 150px;
	}
}

.hero-content {
	position: absolute;
	top: 196px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	max-width: 913px;
	width: 100%;
}

.hero-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 500;
	font-size: 75px;
	letter-spacing: -3px;
	line-height: 1.05;
	background: linear-gradient(135deg, #fff 0%, rgba(202, 240, 248, .7) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 25px;
}

.magnifier {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	pointer-events: none;
	display: none;
	overflow: hidden;
	margin-top: -35px;
}

.magnifier .zoomed {
	position: absolute;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 500;
	font-size: 140px;
	letter-spacing: -3px;
	line-height: 1.05;
	background: linear-gradient(135deg, #fff 0%, rgba(202, 240, 248, .7) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	white-space: nowrap;
	pointer-events: none;
}

.magnifier::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 20px;
	width: 35%;
	height: 25%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	filter: blur(100px);
}

.hero-description {
	font-family: 'Poppins', sans-serif;
	color: rgba(253, 253, 253, .75);
	font-size: 15px;
	font-weight: 300;
	max-width: 625px;
	margin: 0 auto 54px;
}


.service-btn {
	font-family: 'Roboto', sans-serif;
	background: transparent;
	color: #fff;
	font-size: 15px;
	padding: 10px;
	position: relative;
	text-decoration: none;
	border: none;
	background: none;
}

.service-btn:hover {
	text-decoration: none;
}

@media (max-width:768px) {
	.hero-content {
		top: 100px;
		padding: 0 15px;
	}

	.services-buttons {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* ✅ enables horizontal scroll */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    /* padding: 0 15px; */
    justify-content: flex-start;
  }

  .services-buttons::-webkit-scrollbar {
    display: none; /* ✅ hides the scrollbar for clean UI */
  }

  .service-btn {
    flex: 0 0 auto; /* ✅ keeps buttons in a single horizontal row */
  }
}

#about .bg-light {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

#about .rounded {
	border-radius: 0 !important;
}

.section-subtitle12 {
	color: rgba(31, 36, 47, 1);
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 25px;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
}
/* For tablets (e.g., below 992px) */
@media (max-width: 992px) {
	.section-subtitle12 {
		line-height: 1.2;
	}
}

/* For mobile (e.g., below 600px) */
@media (max-width: 600px) {
	.section-subtitle12 {
		line-height: 1.4;
	}
}
.section-title1 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--tq-primary);
	font-size: 50px;
	letter-spacing: -2px;
	margin-bottom: 40px;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--tq-primary);
	font-size: 50px;
	letter-spacing: -2px;
	margin-bottom: 20px;
}

.section-subtitle {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: var(--tq-dark);
	font-size: 28px;
	margin-bottom: 50px;
}

.section-description {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #a4a4a4;
	font-size: 22px;
	max-width: 1070px;
	margin: 0 auto;
}

.btn-outline-custom {
	width: 202px;
	height: 60px;
	border-radius: 10px;
	border: 2.5px solid rgba(19, 94, 115, 1);
	background-color: transparent;
	color: rgba(19, 94, 115, 1);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 26px;
	line-height: 100%;
	letter-spacing: -0.04em;
	padding: 10px;
	gap: 10px;
	transition: all 0.3s ease;
	opacity: 1;
	position: relative;
}

.btn-outline-custom:hover {
	background-color: rgba(19, 94, 115, 1);
	color: white;
	animation: vibrate 0.3s linear;
}

@keyframes vibrate {
	0% {
		transform: translate(0);
	}

	20% {
		transform: translate(-2px, 2px);
	}

	40% {
		transform: translate(-2px, -2px);
	}

	60% {
		transform: translate(2px, 2px);
	}

	80% {
		transform: translate(2px, -2px);
	}

	100% {
		transform: translate(0);
	}
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 300px;
	margin: 0 auto 100px;
	transition: transform 0.4s ease-in-out;
}

.service-card:hover {
	transform: scale(1.07);
}

.service-icon {
	width: 216px;
	height: 216px;
	background-color: #fff;
	border-radius: 50%;
	border: 12px solid rgba(31, 36, 47, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.service-icon img {
	max-width: 148px;
	max-height: 148px;
	object-fit: contain;
}

.service-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--tq-dark);
	font-size: 24px;
	margin-bottom: 16px;
}

.service-description {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #a9a9a9;
	font-size: 17px;
	margin-bottom: 16px;
}

.read-more-btn {
	background: transparent;
	border: none;
	color: var(--tq-primary);
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 18px;
	border-radius: 9px;
	padding: 10px 20px;
	text-decoration: none;
}

.nav-tabs .nav-link {
	font-weight: 500;
	color: #000;
	border: none;
	transition: all .3s;
}

.nav-tabs .nav-link.active {
	color: var(--tq-primary);
	border-bottom: 2px solid var(--tq-primary);
	background: transparent;
}

.nav-tabs {
	margin-bottom: -1.5rem !important;
	background: #BDB7B71A;
	border-bottom: none;
}

@media (min-width:992px) {
	.nav-tabs .nav-link {
		margin: 0 70px;
	}
}

.case-studies {
	text-align: center;
	padding: 4px 20px;
	max-width: 1150px;
	margin: auto;
	margin-top: 0px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 10px;
}

.card {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 350px;
	height: 500px;
	margin: auto;
	box-shadow: 0px 4px 60.6px 0px #00000040;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: scale(1.07);
}

.card img {
	width: 100%;
	height: 100%;
	display: block;
}

.card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: left;
	padding: 20px 1px;
	color: white;
	font-family: Poppins, sans-serif;
	z-index: 2;
}

.card-content::before {
	content: "";
	position: absolute;
	margin-top: -10px;
	margin-left: -80px;
	inset: 0;
	background: url("../img/Frame 1000003925 (1).png") center/cover;
	filter: blur(30px);
	transform: scale(1.1);
	z-index: -2;
}

.card-content h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	margin: 15px 8px 10px;
}

.card-content p {
	font-size: 16px;
	font-weight: 400;
	margin: 0 8px 50px;
}

.card-content a {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	margin-top: 8px;
}

.card-content .read-more {
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	margin-top: 8px;
	align-self: center;
}

.cta-section {
	margin-top: 100px;
}

.lets-talk-btn {
	width: 202px;
	height: 60px;
	padding: 10px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 26px;
	color: #135E73;
	background: transparent;
	border: 2.5px solid #135E73;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.lets-talk-btn:hover {
	color: #fff;
	background-color: var(--tq-primary);
}

@keyframes vibrate {
	0% {
		transform: translate(0);
	}

	20% {
		transform: translate(-2px, 2px);
	}

	40% {
		transform: translate(-2px, -2px);
	}

	60% {
		transform: translate(2px, 2px);
	}

	80% {
		transform: translate(2px, -2px);
	}

	100% {
		transform: translate(0);
	}
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 342px;
	transition: transform 0.4s ease-in-out;
}

.contact-card:hover {
	transform: scale(1.07);
	z-index: 2;
}

.contact-icon {
	width: 212px;
	height: 212px;
	background-color: #fff;
	border-radius: 50%;
	border: 10px solid rgba(31, 36, 47, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.contact-icon img {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.contact-description {
	color: #A9A9A9;
}

.contact-content .contact-description {
	margin-bottom: 0;
}

@media (max-width:480px) {
	.hero-section {
		height: 420px;
	}

	.hero-title {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 20px;
	}

	.section-description {
		font-size: 16px;
	}
}

@media (max-width:768px) {
	.hero-section {
		height: 510px;
	}

	.hero-title {
		font-size: 50px;
	}

	.section-title {
		font-size: 36px;
	}

	.section-description {
		font-size: 18px;
	}
}

#portfolioTabsContent .portfolio-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

#portfolioTabsContent .portfolio-grid>div {
	margin: 0 !important;
	padding: 0 !important;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

#portfolioTabsContent .portfolio-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.portfolio-grid {
	gap: 0 !important;
}

#portfolioTabsContent .tab-pane .row {
	gap: 0 !important;
	justify-content: stretch !important;
	align-content: start !important;
}

.gallery-container {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 60px 10px;
	border-radius: 50px;
}

.gallery-container>* {
	margin: 0 !important;
	padding: 0 !important;
}

.design-card {
	border: 5px solid #ADADAD63;
	box-shadow: 0px 4px 75.5px 0px #B1B1B147;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.design-card:hover {
	transform: scale(1.07);
}

.design-image {
	width: 100%;
	height: 180px;
	display: block;
	margin-bottom: 0;
}

@media (max-width:1024px) {
	.gallery-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (max-width:768px) {
	.gallery-container {
		grid-template-columns: 1fr;
		gap: 15px;
		width: 90%;
	}
}

.star {
	position: absolute;
	width: 3px;
	height: 3px;
	background: white;
	border-radius: 50%;
	opacity: 0.7;
	animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
	0% {
		opacity: 0.2;
		transform: scale(0.8);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}

	100% {
		opacity: 0.3;
		transform: scale(1);
	}
}