:root {
	--primary-color: #005f73;
	--accent-color: #ecc75a;
	--text-color: #ffffff;
	--glass-bg: rgba(0, 0, 0, 0.5);
	--border-radius: 20px;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease-in-out;
}
*{
	box-sizing: border-box;
}
html, body {
	overflow-x: hidden;
}
html {
	scroll-behavior: smooth;
}    
div {
	scroll-margin-top: 80px; /* Navbar height ke according adjust karein */
}
.bg-light {
    background-color: rgb(43 44 48) !important;
    padding: 95px 0 95px 0;
}
.social-top-icons {
	display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.social-circle {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px !important;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
/* Brand Colors */
.social-facebook {
  background-color: #3b5998;
}
.social-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
.social-youtube {
  background-color: #FF0000;
}
.social-circle:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.about-us-section {
	color: var(--text-color);
	padding-top: 80px;
	padding-bottom: 80px;
	background: #1a1b1d;
}
.about-img img {
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}
.about-img img:hover {
	transform: scale(1.05);
}
.about-lft h2 {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #ecc75a;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing:1px;
}
.about-lft p {
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 25px;
	letter-spacing: 1px;
}
.about-highlight {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	margin-bottom: 25px;
}
.about-highlight-text li {
	list-style: none;
	padding: 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.08);
	transition: var(--transition);
}
.about-highlight-text li:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}
.about-highlight-text i {
	font-size: 24px;
	color: #ffffff;
}
.about-highlight-text h5 {
	font-size: 18px;
	margin-top: 10px;
	color: #ffffff;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
	line-height: 25px;
}
/* Brochure Button */
.btan a {
	display: inline-flex;
	align-items: center;
	background-color: #ecc75a;
	color: #fff;
	padding: 12px 25px;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btan a i {
	font-size: 15px;
	margin-left: 10px;
}
.btan a:hover {
	background-color: #ecc75a;
	transform: translateY(-3px);
}
/* ========== Amenities Section Styling ========== */
.amenities_bg {
	padding: 50px 0 80px;
	background: #1a1b1d;
}
.amenities-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenities-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}
.amenities-thumb img {
	width: 100%;
	height: 100%;
	display: block;
}
.amenities-content {
	padding: 20px 18px 24px;
	text-align: center;
}
.amenities-content h3 {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 0;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}

/* ========== Highlights Section Styling ========== */
.highlights-section {
	padding: 50px 0 80px;
	background: #1a1b1d;
}
.highlights-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlights-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}
.highlights-thumb {
	padding: 30px 0 10px;
	text-align: center;
}
.highlights-icon-wrap {
	width: 90px;
	height: 90px;
	margin: 0 auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.highlights-icon-wrap img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}
.highlights-content {
	padding: 18px 18px 24px;
	text-align: center;
}
.highlights-content h3 {
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	margin: 16px 0 0;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 0.5px;
	line-height: 1.4;
}
.project-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}
.project-content {
	padding: 20px;
	text-align: center;
}
.project-content p {
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.6;
}
.floor-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 10px;
}
.floor-sizes span {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	padding: 8px 14px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}
/* Popup Modal Styles */
.popup-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	background: rgba(0, 0, 0, 0.72);
}
.popup-modal.open {
	display: flex;
	align-items: center;
	justify-content: center;
}
.popup-backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
}
.popup-dialog {
	position: relative;
	z-index: 1;
	width: min(92vw, 620px);
	max-height: 90vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #ffffff;
	color: #1a1b1d;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	border: none;
	background: #f1f1f1;
	color: #333;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
}
.popup-header h3 {
	margin: 0 0 8px;
	font-size: 26px;
	color: #005f73;
	letter-spacing: 1px;
}
.popup-header p {
	margin: 0 0 20px;
	color: #666;
	line-height: 1.6;
	letter-spacing: 1px;
}
.popup-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.popup-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.popup-col {
	flex: 1 1 0;
	min-width: 220px;
}
.popup-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.popup-field label {
	font-weight: 500;
	color: #1a1b1d;
	letter-spacing: 1px;
	font-size: 14px;
}
.popup-field input,
.popup-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	font-size: 14px;
	letter-spacing: 1px;
	color: #222;
	background: #fff;
}
.popup-field textarea {
	resize: vertical;
	min-height: 100px;
}
.popup-field.has-error input,
.popup-field.has-error textarea {
	border-color: #d9534f;
	background: #fff5f5;
}
.input-error-message {
	display: none;
	font-size: 13px;
	color: #d9534f;
	margin-top: 4px;
}
.popup-field.has-error .input-error-message {
	display: block;
}
.popup-captcha-row {
	align-items: flex-end;
}
.captcha-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: #f9f9f9;
	min-height: 48px;
}
.captcha-question {
	font-weight: 600;
	color: #005f73;
}
.captcha-refresh {
	border: none;
	background: #ecc75a;
	color: #111;
	padding: 8px 12px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}
.popup-submit-btn {
	margin-top: 6px;
	border: none;
	background: #005f73;
	color: white;
	padding: 12px 18px;
	letter-spacing: 1px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
}
.popup-success-message,
.popup-error-message {
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 14px;
	font-size: 14px;
}
.popup-success-message {
	background: #e8f7ee;
	color: #1e7c45;
}
.popup-error-message {
	background: #fdecea;
	color: #b42318;
}

/* Price List Section Modern Styles */
.owl-carousel .item {
	padding: 0px;
}

.nearby-section {
	padding: 70px 0 70px;
	background: #1a1b1d;
}
.nearby-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nearby-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}
.nearby-thumb img {
	width: 100%;
	height: 100%;
	display: block;
}
.nearby-content {
	padding: 20px 18px 24px;
	text-align: center;
}
.nearby-content h3 {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 8px;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.nearby-content p {
	font-size: 15px;
	color: #ecc75a;
	margin: 0;
	font-weight: 500;
	letter-spacing: 1px;
}

.pricing-wrapper {
	margin: auto;
	padding: 50px 0px 80px;
	background: #1a1b1d;
}
.pricing-card {
	flex: 1 1 300px;
	background-color: #004c5e;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	text-align: center;
	padding: 20px;
	color: #fff;
	position: relative;
}
.pricing-card.standard {
	background-color: #e74c3c;
}
.pricing-card.business {
	background-color: #00408b;
}
.pricing-header {
	background-color: #fff;
	color: #004c5e;
	padding: 20px;
	border-radius: 10px;
	margin-top: -25px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.pricing-card.standard .pricing-header {
	color: #e74c3c;
}
.pricing-card.business .pricing-header {
	color: #00408b;
}
.pricing-header h3 {
	font-size: 1.2rem;
	color: #000;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.price {
	font-size: 24px;
	font-weight: 500;
	margin: 10px 0 0;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.features {
	margin: 30px 0;
	line-height: 2;
	font-size: 0.95rem;
	color: #fff;
	letter-spacing: 1px;
}
.btn {
	background-color: #fff;
	color: #000;
	padding: 15px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 1px;
	display: inline-block;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn:hover {
	background-color: #f2f2f2;
}
/* ========== Call Action Section ======== */
.cta-section {
	position: relative;
	background: url('../img/home/footer/bg.jpg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	height: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
}
.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5); /* dark overlay */
	z-index: 1;
}
.cta-content {
	position: relative;
	z-index: 2;
	max-width: 100%;
	padding: 20px;
}
.cta-content h1 {
	font-size: 40px !important;
	margin-bottom: 15px !important;
}
.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 45px;
	letter-spacing: 1px;
	line-height: 30px;
	max-width: 900px;
}
.cta-button {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 12px 30px;
	font-size: 1rem;
	border-radius: 30px;
	backdrop-filter: blur(10px);
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.cta-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}
/* ========== Gallery Section =========== */
.gallery-wrapper {
    background-color: #1a1b1d;
    padding: 70px 0 95px 0;
}
.owl-carousel .item img {
	width: 100%;
	border-radius: 10px;
	display: block;
}
.project-hoverlay {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.item:hover .project-hoverlay {
	opacity: 1;
}
.project-text {
	text-align: center;
	color: #fff;
}
.project-text h3 {
	margin-top: 10px;
	font-size: 18px;
}
.project-text a {
	display: inline-block;
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.project-text a:hover {
	background: rgba(255, 255, 255, 0.4);
}
/* Popup */
.popup {
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
	text-align: center;
}
.popup img {
	max-width: 90%;
	max-height: 80vh;
	border-radius: 10px;
	object-fit: contain;
	margin: 80px auto;
}
.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 30px;
	color: white;
	cursor: pointer;
	font-weight: bold;
}
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 30px;
	width: 60px;
	
}

/* Contact form error styles - only shown when .has-error is added */
.form-group {position: relative;margin-bottom: 12px;width: 100%;}
.input-error-message { color: #e74c3c; font-size: 0.9rem; margin-top: 6px; display: none; }
/* Captcha row: label and refresh button inline */
.captcha-row { display: flex; gap: 12px; align-items: center; }
.captcha-refresh {border: 1px solid rgb(0 0 0);color: #000000;padding: 6px 10px;border-radius: 6px;letter-spacing: 1px;cursor: pointer;}
.form-group.has-error .input-error-message { display: block; }
.form-group.has-error input, .form-group.has-error textarea { border-color: #e74c3c !important; box-shadow: 0 0 0 3px rgba(231,76,60,0.06); }
.form-group label {display:block;color: #000;}
.left-btn {
	left: 30px;
}
.right-btn {
	right: 30px;
}
.nav-btn:hover {
	background: rgba(255,255,255,0.4);
}
/* ========== About Developer Section ========== */
.about-developer {
	background-color: #1a1b1d;
	padding: 80px 0 95px 0;
}
.about-developer-content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: 50px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(12px);
	transition: all 0.3s ease;
	text-align: center;
}
.about-developer-content h3 {
	font-size: 2.3rem;
	font-weight: 600;
	color: #ecc75a;
	position: relative;
	margin-bottom: 25px;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
	text-align: center;
}
.about-developer-content h3::after {
	content: "";
	width: 50px;
	height: 4px;
	background: #ecc75a;
	display: block;
	margin: 10px auto 0;
	border-radius: 10px;
}
.about-developer-content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #333;
	text-align: center;
	margin-bottom: 0;
	letter-spacing: 1px;
}
/* ========== About Footer ========== */
.about-footer {
	margin-top: 50px;
}
.about-footer .box {
	padding: 25px;
	background-color: #ffffff;
	border-radius: 18px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.information-web {
	font-size: 1rem;
	color: #555;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 0;
	letter-spacing: 1px;
}
/* enquire Section Container */
.enquire-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 10px 30px rgb(255 255 255 / 10%);
    border-radius: 15px;
    overflow: hidden;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}
/* enquire Info */
.enquire-info {
    background: linear-gradient(135deg, #a97920, #ecc75a);
    color: white;
    width: 40%;
    padding: 30px;
}
.enquire-info h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
	font-size: 25px;
}
.enquire-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}
.input-row {
    display: flex;
    gap: 10px;
}
.input-row input {
    width: 50%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}
.enquire-info a{
    color:#fff;
}
.enquire-info p i {
    margin-right: 10px;
}
/* Social Media Icons */
.social-icons {
    margin-top: 15px;
}
.social-icons i {
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.social-icons i:hover {
    color: #f39c12;
}
/* enquire Form */
.enquire-form {
    background: white;
    width: 60%;
    padding: 30px;
}
.enquire-form h3 {
	margin-bottom: 10px;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
	font-size: 25px;
	color: #2b2c30;
}
.enquire-form p {
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
    color: #bf8d31;
    margin-bottom: 10px;
}
.enquire-form input,
.enquire-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}
.enquire-form input:focus,
.enquire-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0px 0px 5px rgba(52, 152, 219, 0.5);
}
/* Send Button */
.enquire-form .theme-btn {
    background: linear-gradient(135deg, #a97920, #ecc75a);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    font-family: "Finlandica Headline", sans-serif;
    letter-spacing: 1px;
}
.enquire-form .theme-btn:hover {
    background: linear-gradient(135deg, #a97920, #ecc75a);
}
.custom-footer {
	color: #fff;
	text-align: center;
	padding: 40px 20px;
	background-color: #111;
    background-origin: padding-box;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.footer-logo {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.footer-nav {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	padding: 6px 12px;
	transition: color 0.3s ease;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.footer-nav a:hover {
	color: #fff;
}
.footer-socials {
	margin-bottom: 20px;
}
.social-icon {
	display: inline-block;
	margin: 0 8px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #ecc75a;
	border-radius: 50%;
	color: #ecc75a;
	font-size: 18px;
	transition: background 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
	background-color: #ecc75a;
	color: #111;
}
.footer-credit {
	font-size: 20px;
	color: #ffffff;
	margin-top: 10px;
	padding: 0 10px;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
	margin-bottom: 0px;
}
.footer-credit i {
	color: #555;
	margin: 0 5px;
}
.footer-credit a {
	color: #a5ff89;
	text-decoration: none;
}
.footer-credit a:hover {
	text-decoration: underline;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Finlandica Headline", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #ae7d24;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Responsive */
@media (max-width: 992px) {
	.about-developer-content {
		padding: 25px;
		text-align: center;
	}
	.about-developer-content h3 {
		font-size: 1.6rem;
		border-left: 0;
	}
	.about-developer-content p {
		text-align: center;
	}
}
@media (max-width: 991px) {
	.about-highlight-text li {
		margin-bottom: 15px;
	}
	.price_list_box {
		margin-bottom: 30px;
	}
	.price_list_high h3 {
		font-size: 2.2rem;
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
}
@media (max-width: 767px) {
	.about-lft h2 {
		font-size: 1.75rem;
		margin-top: 30px;
	}
	.about-highlight {
		padding: 15px;
	}
	.btan a {
		width: 100%;
		justify-content: center;
	}
	.amenities_heading h2 {
		font-size: 2rem;
	}
	.overlay_text {
		padding: 20px 10px;
	}
	.amenities-img {
		width: 50px;
		height: 50px;
	}
	.overlay_text h4 {
		font-size: 1rem;
	}
	.gallery-wrapper {
        padding: 60px 0 50px 0;
    }
    .project-text h3 {
        font-size: 16px;
    }
    .project-text a {
        font-size: 18px;
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    .popup img {
        max-width: 95%;
        max-height: 70vh;
        margin: 60px auto;
    }
    .close-btn {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
        padding: 6px 10px;
    }
    .left-btn {
        left: 15px;
    }
    .right-btn {
        right: 15px;
    }
	.enquire-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }
    .enquire-info, .enquire-form {
        width: 100%;
        padding: 20px;
        margin: 10px 0;
    }
    .input-row {
        flex-direction: column;
    }
    .input-row input {
        width: 100%;
    }
	.pricing-card {
		max-width: 100%;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
	.beauly-scroll-top {
		position: fixed;
		right: 5px;
		bottom: 45px;
		width: 45px;
		height: 45px;
		cursor: pointer;
		display: block;
		border-radius: 100%;
		-webkit-box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
		box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
		z-index: 9999;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateY(0.75rem);
		-ms-transform: translateY(0.75rem);
		transform: translateY(0.75rem);
		-webkit-transition: all 0.2s linear, margin-right 0s;
		transition: all 0.2s linear, margin-right 0s;
	}
}
@media (max-width: 600px) {
	.cta-content h1 {
		font-size: 1.8rem;
	}
	.cta-content p {
        font-size: 1rem;
	}
	.cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
	}
	.footer-nav {
		flex-direction: column;
		gap: 6px;
	}
	.footer-logo {
		font-size: 22px;
	}
	.social-icon {
		width: 36px;
		height: 36px;
		line-height: 36px;
		font-size: 16px;
		margin: 0 6px;
	}
	.footer-credit {
		font-size: 13px;
		line-height: 1.4;
	}
}
@media (max-width: 480px) {
    .project-text h3 {
        font-size: 14px;
    }
    .project-text a {
        font-size: 16px;
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .popup {
		padding: 20px;
	}
	.popup img {
		max-width: 98%;
		max-height: 70vh;
		margin: 160px auto; /* REMOVE any top margin like 40px */
	}
    .close-btn {
        font-size: 22px;
        top: 10px;
        right: 15px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 5px 8px;
    }
}