.footer-link {
	transition: all 0.3s ease;
	display: inline-block;
}

	.footer-link:hover {
		color: white;
		text-shadow: 0 0 10px rgba(255,255,255,0.3);
	}

.feature-card:hover {
	transform: translateY(-5px);
}

/* PHONE WIDGET */
.phone-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	width: 280px;
	height: auto;
	background: #121212;
	border-radius: 44px;
	box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.8);
	padding: 10px;
	border: 8px solid #1c1c1e;
	font-family: 'Inter', sans-serif;
	transform: translateY(120%);
	opacity: 0;
	animation: slideUpPhone 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

@keyframes slideUpPhone {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.phone-screen {
	background: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 34px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
}

.phone-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	height: 24px;
	background: #000;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	z-index: 50;
}

.phone-close-btn {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 30px;
	height: 30px;
	background: #ef4444;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	z-index: 60;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	border: 2px solid white;
	transition: transform 0.2s;
}

	.phone-close-btn:hover {
		transform: scale(1.1);
	}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.stat-divider {
	width: 1px;
	height: 25px;
	background-color: #e5e5ea;
	margin: auto 0;
}

.logo-plane {
	transition: transform 0.3s ease;
}

.group:hover .logo-plane {
	transform: translateX(3px) translateY(-3px);
}

/* --- CUSTOM ICONS SCALING & CENTERING --- */

/* Burj Khalifa: Scaled up and adjus/* Dubai/Burj Khalifa: Clean architecture look */
/* Dubai/Burj Khalifa: Tiered structure */
.burj-icon-lg {
	width: 32px;
	height: 32px;
	transform: scale(1.6);
	transform-origin: center;
	transition: color 0.3s ease;
}

/* Singapore/MBS: 3 towers with SkyPark */
.singapore-icon-lg {
	width: 32px;
	height: 32px;
	transform: scale(1.5);
	transform-origin: center;
	transition: color 0.3s ease;
}

.svg-icon {
	fill: currentColor;
	width: 32px;
	height: 32px;
	display: inline-block;
}


/* --- SERVICE CARD DESIGN --- */
.service-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #f1f5f9;
	transition: all 0.4s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	height: 100%; /* Ensure uniform height */
}

	.service-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 40px -5px rgba(22, 122, 122, 0.15);
		border-color: #167a7a;
	}

.service-img-wrapper {
	height: 200px;
	overflow: hidden;
	position: relative;
	background: #f0f0f0; /* Placeholder color */
}

.service-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service-card:hover .service-img {
	transform: scale(1.1);
}

.service-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* Image Zoom for Workspace */
.img-zoom-container {
	overflow: hidden;
}

.img-zoom {
	transition: transform 0.7s ease;
}

.group:hover .img-zoom {
	transform: scale(1.05);
}

.services-stack {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 1050px; /* Width wapis normal kar di */
	margin: 0 auto;
}

.master-card {
	background: linear-gradient(135deg, #e0f5f5 0%, #ffffff 100%);
	border-radius: 60px;
	padding: 50px 70px; /* Padding thodi adjust ki taaki single line fit rahe */
	position: relative;
	overflow: hidden;
	border: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 200px;
	transition: transform 0.4s ease;
	box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
}

	/* Glow Elements (Dark Shade) */
	.master-card.align-left::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 45%;
		height: 100%;
		background: radial-gradient(circle at 0% 50%, rgba(15, 63, 78, 0.15) 0%, transparent 70%);
		pointer-events: none;
	}

	.master-card.align-right::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 45%;
		height: 100%;
		background: radial-gradient(circle at 100% 50%, rgba(15, 63, 78, 0.15) 0%, transparent 70%);
		pointer-events: none;
	}

	.master-card.align-left {
		flex-direction: row;
	}

	.master-card.align-right {
		flex-direction: row-reverse;
	}

/* Heading Styling - Single Line Fixed */
.heading-exact {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 2.4rem; /* Thoda sa adjust kiya taaki single line mein fit ho */
	text-transform: uppercase;
	color: #0f3f4e;
	line-height: 1;
	z-index: 2;
	letter-spacing: -1px;
	white-space: nowrap; /* Zabardasti single line */
	flex-shrink: 0; /* Shrink nahi hoga */
	width: 40%;
}

.master-card.align-right .heading-exact {
	text-align: right;
}

.master-card.align-left .heading-exact {
	text-align: left;
}

/* Content Styling - Always Left Aligned */
.content-exact {
	color: #475569;
	font-size: 1.1rem;
	font-weight: 500;
	width: 55%;
	line-height: 1.6;
	z-index: 2;
	text-align: left !important; /* Force Left Alignment */
}

.master-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px -10px rgba(15, 63, 78, 0.1);
}

@media (max-width: 900px) {
	.master-card, .master-card.align-right {
		flex-direction: column;
		padding: 40px 30px;
		border-radius: 40px;
		text-align: center;
		gap: 15px;
	}

	.heading-exact {
		width: 100%;
		text-align: center !important;
		white-space: normal; /* Mobile pe tootne do */
		font-size: 2rem;
	}

	.content-exact {
		width: 100%;
		text-align: center !important;
	}

	.master-card.align-left::before, .master-card.align-right::before {
		width: 100%;
		height: 50%;
	}

	/* Sub-headings and small text headers */
	h4 {
		font-weight: 700 !important;
	}

	p, li, a, span {
		font-family: 'Inter', sans-serif;
	}

	/* The "Paper" Container */
	.legal-paper {
		background: white;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
		border: 1px solid rgba(0,0,0,0.02);
		position: relative;
	}

		.legal-paper::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: linear-gradient(90deg, #0f3f4e 0%, #167a7a 50%, #0f3f4e 100%);
		}

	/* Classy Section Dividers */
	.section-divider {
		display: flex;
		align-items: center;
		margin: 3rem 0 2rem 0;
	}

		.section-divider::after {
			content: '';
			flex: 1;
			height: 1px;
			background-color: #e2e8f0;
			margin-left: 1.5rem;
		}

	/* Elegant List Items */
	.elegant-list-item {
		position: relative;
		padding-left: 1.5rem;
		margin-bottom: 0.75rem;
	}

		.elegant-list-item::before {
			content: '•';
			position: absolute;
			left: 0;
			color: #167a7a;
			font-size: 1.2rem;
			line-height: 1.5rem;
		}

	/* Data Collection "Pills" */
	.data-pill {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 16px 20px;
		background: #f8fafc;
		border: 1px solid #e2e8f0;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

		.data-pill:hover {
			border-color: #167a7a;
			background: #fff;
			box-shadow: 0 4px 12px rgba(22, 122, 122, 0.08);
			transform: translateY(-2px);
		}

	.pill-icon {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #e0f2f1;
		color: #167a7a;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.9rem;
	}

	/* Usage Grid */
	.usage-grid-item {
		border-left: 3px solid #cbd5e1;
		padding-left: 1.5rem;
		transition: border-color 0.3s;
	}

		.usage-grid-item:hover {
			border-left-color: #167a7a;
		}

	.logo-plane {
		transition: transform 0.3s ease;
	}

	.group:hover .logo-plane {
		transform: translateX(3px) translateY(-3px);
	}

	@keyframes float {
		0% {
			transform: translateY(0px);
		}

		50% {
			transform: translateY(-8px);
		}

		100% {
			transform: translateY(0px);
		}
	}

	.floating-address {
		animation: float 5s ease-in-out infinite;
	}

	/* Premium Card Hover Effects */
	.premium-card {
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

		.premium-card:hover {
			transform: translateY(-8px);
			box-shadow: 0 20px 40px -5px rgba(22, 122, 122, 0.15);
			border-color: #167a7a;
		}

			.premium-card:hover .icon-box {
				background-color: #167a7a;
				color: white;
				transform: scale(1.1) rotate(-5deg);
			}

	.icon-box {
		transition: all 0.4s ease;
	}

	.legal-paper {
		background: white;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.06);
		border: 1px solid rgba(0,0,0,0.02);
		position: relative;
	}

		.legal-paper::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: linear-gradient(90deg, #0f3f4e 0%, #167a7a 50%, #0f3f4e 100%);
		}

	.section-divider {
		display: flex;
		align-items: center;
		margin: 3rem 0 1.5rem 0;
	}

		.section-divider::after {
			content: '';
			flex: 1;
			height: 1px;
			background-color: #e2e8f0;
			margin-left: 1.5rem;
		}

	.elegant-list-item {
		position: relative;
		padding-left: 1.5rem;
		margin-bottom: 0.75rem;
		font-size: 0.95rem;
		line-height: 1.6;
	}

		.elegant-list-item::before {
			content: '•';
			position: absolute;
			left: 0;
			color: #167a7a;
			font-size: 1.2rem;
		}

	.usage-grid-item {
		border-left: 3px solid #cbd5e1;
		padding-left: 1.5rem;
		transition: border-color 0.3s;
	}

		.usage-grid-item:hover {
			border-left-color: #167a7a;
		}

	.legal-paper::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, #0f3f4e 0%, #167a7a 50%, #0f3f4e 100%);
	}

	/* Terms Item Styling */
	.terms-item {
		margin-bottom: 2.5rem; /* Spacing between sections */
		border-bottom: 1px solid #f1f5f9; /* Subtle separator line */
		padding-bottom: 2rem;
	}

		.terms-item:last-child {
			border-bottom: none;
			padding-bottom: 0;
		}

		.terms-item h3 {
			color: #0f3f4e; /* Brand Dark */
			font-weight: 700 !important;
			font-size: 1.5rem; /* Increased Size */
			margin-bottom: 0.75rem;
			line-height: 1.2;
		}

		.terms-item p {
			color: #475569;
			font-size: 1rem;
			line-height: 1.7;
		}

	.btn-gold {
		background: linear-gradient(to right, #d4a748, #aa8328);
		box-shadow: 0 4px 15px rgba(180, 136, 17, 0.3);
		border: 1px solid #8a6616;
		transition: all 0.3s ease;
	}

		.btn-gold:hover {
			transform: translateY(-2px);
			box-shadow: 0 10px 25px rgba(180, 136, 17, 0.4);
			filter: brightness(1.1);
		}

	/* --- GLASS PANEL --- */
	.glass-panel {
		background: rgba(255, 255, 255, 0.98); /* Solid enough to hide image behind */
		backdrop-filter: blur(20px);
		border: 1px solid rgba(0, 0, 0, 0.05);
	}

	/* --- IMAGE HOVER --- */
	.hover-scale-img {
		transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

	.group:hover .hover-scale-img {
		transform: scale(1.05);
	}

	/* --- ANIMATION --- */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.animate-fade-up {
		animation: fadeInUp 0.8s ease-out forwards;
	}

	.delay-100 {
		animation-delay: 0.1s;
	}

	.delay-200 {
		animation-delay: 0.3s;
	}

	.text-shadow-hero {
		text-shadow: 0 4px 30px rgba(0,0,0,0.8);
	}


	.fooactve {
		color: #0f3f4e !important;
		background: #ffffff !important;
	}
