:root {
	--primary-color: #005f73;
	--accent-color: #335d19;
	--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;
}
html {
	scroll-behavior: smooth;
}    
div {
	scroll-margin-top: 80px; /* Navbar height ke according adjust karein */
}
.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: transparent; /* No background */
}
.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: #335d19;
	font-family: "Jost", sans-serif;
	letter-spacing:1px;
}
.about-lft p {
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 25px;
	text-align: justify;
}
.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: "Jost", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
	line-height: 25px;
}
/* Brochure Button */
.btan a {
	display: inline-flex;
	align-items: center;
	background-color: #335d19;
	color: #fff;
	padding: 12px 25px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	border-radius: 50px;
	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: #335d19;
	transform: translateY(-3px);
}
/* ========== Amenities Section Styling ========== */
.amenities_bg {
	padding: 50px 15px 80px; /* Reduced side padding on mobile */
	background: #f8f9fa;
	overflow-x: hidden; /* Prevents horizontal overflow */
}
.amenities_box {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	margin-bottom: 25px;
	width: 100%; /* Ensures it scales properly */
	max-width: 100%; /* Avoids going beyond parent container */
}
.overlay_text {
	text-align: center;
	padding: 25px 10px; /* More mobile-friendly */
}
.amenities-img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	transition: transform 0.3s ease;
	max-width: 100%; /* Ensures responsiveness */
}
.amenities_box:hover .amenities-img {
  transform: scale(1.1);
}
.overlay_text h4 {
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	margin-top: 15px;
	margin-bottom: 0px;
	line-height: 1.5;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
	word-wrap: break-word; /* Prevents long words from overflowing */
}
.amenities_box:hover h4 {
	color: #335d19;
}
/* Base Styles */
.bg-theme {
	background: linear-gradient(to right, #e3f2fd, #ffffff);
	padding: 60px 20px;
}
/* Image Shine Effect */
.img-shine img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-shine img:hover {
	transform: scale(1.03);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}
/* Card Styling */
.project-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease-in-out;
}
.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.project-card-subtitle {
	display: inline-block;
	background-color: #335d19;
	color: #fff;
	font-size: 14px;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.project-card-title a {
	font-size: 24px;
	color: #2c3e50;
	text-decoration: none;
	font-weight: 600;
}
.project-card-text {
	font-size: 15px;
	color: #555;
	margin: 10px 0 20px;
}
/* Table Styles */
.project-table {
	width: 100%;
	border-collapse: collapse;
}
.project-table td {
	padding: 10px 12px;
	vertical-align: top;
	font-size: 15px;
	color: #333;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	text-transform: none;
	border-bottom: 1px solid #e0e0e0;
}
.project-table tr:last-child td {
	border-bottom: none;
}
/* Price List Section Modern Styles */
.price_list_bg {
	padding: 80px 80px;
}
.owl-carousel .item {
	padding: 0px;
}
.price_list_box {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	padding: 50px 25px;
	position: relative;
	backdrop-filter: blur(10px);
	transition: all 0.35s ease;
	border: 1px solid #e0e0e0;
}
.price_list_high h3 {
	font-size: 25px;
	font-weight: 500;
	color: #335d19;
	background: #e3f0ff;
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	border-radius: 50%;
	line-height: 60px;
	box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.Price_list_text h5 {
	font-size: 1.6rem;
	color: #212529;
	font-weight: 500;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}

.Price_list_text_highlight ul {
	padding-left: 0;
}
.Price_list_text_highlight h5 {
	font-size: 1rem;
	color: #666;
	font-weight: 8=500;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.Price_list_text_highlight p {
	font-size: 1.1rem;
	color: #111;
	font-weight: 400;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.price a {
	display: inline-block;
	background: #335d19;
	color: #fff;
	font-weight: 400;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 8px 20px rgb(202 151 57);
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.price a:hover {
	background: #0a58ca;
	box-shadow: 0 10px 25px rgba(13, 110, 253, 0.45);
	transform: scale(1.03);
}
.fa-arrow-trend-up {
	transition: transform 0.3s ease;
}
.price:hover .fa-arrow-trend-up {
	transform: translateX(6px);
}
/* ========== Location Section ========== */
.location_bg {
	background: #f8f9fa;
	padding: 80px 0px;
}
.location_main .location_img img {
	width: 100%;
	max-width: 100%;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}
.location_main .location_img img:hover {
	transform: scale(1.02);
}
.location_bg_text {
	background: linear-gradient(135deg, #ffffff 0%, #f0f4f5 100%);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(12px);
	transition: all 0.3s ease;
}
.location_bg_text h2 {
	font-size: 2.2rem;
	font-weight: 500;
	color: #335d19;
	border-left: 3px solid #335d19;
	padding-left: 10px;
	margin-bottom: 0px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.location_bg_text ul {
	list-style: none;
	padding-left: 0;
	margin-top: 20px;
}
.location_bg_text ul li {
	display: flex;
	align-items: center;
	font-size: 1.05rem;
	background: #ffffff;
	border-radius: 14px;
	padding: 15px 15px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 121, 107, 0.05);
}
.location_bg_text ul li:hover {
	background: #d1f3ef;
	transform: translateY(-2px);
}
.location_bg_text ul li i {
	color: #335d19;
	font-size: 1.3rem;
}
.location_bg_text ul li h4{
	margin-bottom: 0;
	margin-right: 10px;
}
.location_bg_text ul li h5{
	margin-bottom: 0;	
	font-family: "Jost", sans-serif;	
	letter-spacing: 1px;	
	font-size: 15px;	
	font-weight: 400;
}
/* ========== About Developer Section ========== */
.about-developer {
	background: #f8f9fa;
	padding: 20px 0px 80px;
}
.about-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-content h3 {
	font-size: 2.3rem;
	font-weight: 600;
	color: #335d19;
	position: relative;
	margin-bottom: 25px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	text-align: center;
}
.about-content h3::after {
	content: "";
	width: 50px;
	height: 4px;
	background: #335d19;
	display: block;
	margin: 10px auto 0;
	border-radius: 10px;
}
.about-content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #333;
	text-align: center;
	margin-bottom: 0;
}
.about-content img {
	border-radius: 10px;
	margin-top: 25px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.about-content h4 {
	color: #555;
	font-weight: 600;
	margin-top: 10px;
}
/* ========== 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;
}
/* enquire Section Container */
.enquire-container {
    width: 100%;
    max-width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 80px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
/* enquire Info */
.enquire-info {
    background: linear-gradient(135deg, #74b719, #335d19);
    color: white;
    width: 40%;
    padding: 30px;
}
.enquire-info h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
	font-size: 25px;
}
.enquire-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-family: "Jost", 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: "Jost", 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: 58%;
    padding: 30px;
}
.enquire-form h3 {
	margin-bottom: 0px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
	font-size: 25px;
}
.enquire-form p {
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
	margin-bottom: 10px;
}
.enquire-form input,
.enquire-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
    font-family: "Jost", 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, #74b719, #335d19);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.enquire-form .theme-btn:hover {
    background: linear-gradient(135deg, #74b719, #335d19);
}
.custom-footer {
	color: #fff;
	text-align: center;
	padding: 40px 20px;
	background-color: #1b2c37;
    background-image: url(../img/map.png);
    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: "Jost", 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: "Jost", 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 #6aff0d;
	border-radius: 50%;
	color: #6aff0d;
	font-size: 18px;
	transition: background 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
	background-color: #6aff0d;
	color: #111;
}
.footer-credit {
	font-size: 14px;
	color: #ffffff;
	margin-top: 10px;
	padding: 0 10px;
	font-family: "Jost", 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: "Jost", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #1b2c37;
}
.contact-buttons a.whatsapp-button {
	background-color: #335d19;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Responsive */
@media (max-width: 992px) {
	.location_bg_text,
	.about-content {
		padding: 25px;
		text-align: center;
	}
	.location_bg_text h2,
	.about-content h3 {
		font-size: 1.6rem;
		border-left: 0;
	}
	.location_bg_text ul li {
		font-size: 1rem;
		flex-direction: column;
		align-items: center;
		padding: 12px;
	}
	.location_bg_text ul li h4{
		display:none;
	}
	.location_bg_text ul li h5{
		text-align: center;
	}
	.location_main img {
		margin-bottom: 25px;
	}
	.about-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;
	}
	.project-thumb,
	.project-card {
		margin-top: 30px;
	}
}
@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_bg {
		padding: 30px 10px 60px;
	}
	.amenities_heading h2 {
		font-size: 2rem;
	}
	.overlay_text {
		padding: 20px 5px;
	}
	.overlay_text h4 {
		font-size: 0.95rem;
	}
	.amenities-img {
		width: 50px;
		height: 50px;
	}
	.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%;
    }
	.price_list_bg{
		padding: 0;
        padding-top: 50px;
        padding-bottom: 50px;
	}
	.project-card {
		padding: 20px;
	}
	.project-table td {
		font-size: 14px;
		padding: 8px 10px;
	}
	.project-card-title a {
		font-size: 20px;
	}
	.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;
	}
}
@media (max-width: 600px) {
	.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-card-subtitle {
		font-size: 13px;
		padding: 3px 8px;
	}
}