.floating-social-icons {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	transition: transform 0.3s;
}
.floating-social-icons ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.floating-social-icons ul li {
	margin: 5px 0;
	position: relative;
}
.floating-social-icons ul li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 40px;
	height: 40px;
	background: #3b5998;
	color: #fff;
	font-size: 20px;
	padding-left: 10px;
	transition: 0.3s;
	border-radius: 5px;
	position: relative;
	text-decoration: none;
}
.floating-social-icons ul li a i {
	margin-right: 10px;
}
.floating-social-icons ul li a:hover::after {
	content: attr(data-title);
	position: absolute;
	left: 50px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 5px 10px;
	border-radius: 3px;
	white-space: nowrap;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
}
.social-icon {
	display: none;
}
/* HEADER STYLES */
.header-container {
    width: 100%;
    background: #fff;
    color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
}

/* HEADER TOP */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo img {
    max-width: 140px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}
.contact-info li{
	display: inline;
    margin-left: 20px;
    font-size: 18px;
    font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
	color: #ac126b;
}
.contact-info li i{
	margin-right: 10px;
	color: #ac126b;
}
.contact-info li a{
	color: #ac126b;
}
/* MENU TOGGLE */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
/* NAVIGATION */
.main-nav {
    background: linear-gradient(135deg, #961163, #ed1583);
    padding: 12px 5%;
    text-align: center;
    border-top: 2px solid #961163;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.main-nav li {
    display: inline;
}
.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
    font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
    background: rgb(237 23 132);
    color: black;
    box-shadow: 0 3px 10px rgba(144, 238, 144, 0.5);
}
/* SCROLL EFFECT */
.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #961163, #ed1583);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 5%;
    z-index: 10000;
}
.for_box_bg {
	padding: 60px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #961163, #ed1583);
}
.for_box {
	text-align: center;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 15px;
	padding: 30px;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 10px rgb(176 18 109 / 26%);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.for_box:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 10px 30px rgb(177 18 109 / 48%);
}
.for_box::before {
	content: "";
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgb(204 19 119 / 14%), transparent);
	transition: 0.5s;
}
.for_box:hover::before {
	top: 0;
	left: 0;
}
.for_box i {
	font-size: 60px;
	color: #ffffff;
	margin-bottom: 15px;
	filter: drop-shadow(0 10px 30px rgb(177 18 109 / 48%));
}
.for_box span {
	font-size: 30px !important;
	font-weight: 500 !important;
	color: #edfafc !important;
	display: block !important;
	transition: 0.3s !important;
	padding: 10px !important;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
}
.for_box:hover span {
	color: #ffffff;
	text-shadow: 0px 0px 10px #b1136d;
}
.for_box h3 {
	font-size: 20px !important;
	color: white;
	text-transform: uppercase;
	opacity: 0.9;
	transition: 0.3s;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px !important;
}
.for_box:hover h3 {
	opacity: 1;
	letter-spacing: 1px;
}
.about {
	padding: 100px 0;
	background: radial-gradient(circle, #e0f7fa, #ffffff);
	text-align: center;
}
.about h3{
	font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 600;
}
.section-bottom{
	margin-top:20px;
}
.text-section {
	text-align: left;
}
.section-title {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: #2c3e50;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
}
.highlight {
	color: #b0126d;
	font-size: 3.2rem;
}
.sub-highlight {
	color: #ff5733;
	font-size: 1.8rem;
	font-weight: bold;
}
.description {
	font-size: 1.2rem;
	color: #555;
	line-height: 1.8;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
	text-align: justify;
	font-weight: 400;
	margin-bottom: 10px;
}
.features-list {
	list-style: none;
	padding: 0;
}
.features-list li {
	font-size: 1.2rem;
	color: #2c3e50;
	margin: 10px 0;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
}
.features-list i {
	color: #b0126d;
	margin-right: 10px;
}		
.btn-glow {
	display: inline-block;
	background: #ff5733;
	color: #fff;
	padding: 14px 30px;
	border-radius: 50px;
	font-size: 1.2rem;
	transition: 0.3s;
	box-shadow: 0px 5px 15px rgba(255, 87, 51, 0.3);
	text-decoration: none;
}		
.btn-glow:hover {
	background: #e04e2a;
	transform: scale(1.08);
	box-shadow: 0px 8px 20px rgba(255, 87, 51, 0.5);
}
.image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.image-wrapper img {
	width: 100%;
	transition: 0.4s ease-in-out;
}	
.image-wrapper:hover img {
	transform: scale(1.05);
}
.image-overlay {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 1.2rem;
}
.offer {
	text-align: center;
	background: radial-gradient(circle, #e0f7fa, #ffffff);
	padding: 80px 0;
	color: #fff;
}
.offer .title h2 {
	font-size: 40px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px !important;
}
.offer-box {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	padding: 40px;
	transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}
.offer-box:hover {
	transform: translateY(-12px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.offer-box::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 5px;
	background: #d5147a;
	top: 0;
	left: 0;
}
.offer-box h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #d5147a;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px !important;
}
.offer-box img {
	width: 100%;
	border-radius: 15px;
	margin-bottom: 20px;
	transition: transform 0.3s ease-in-out;
}
.offer-box:hover img {
	transform: scale(1.05);
}
.offer-box p {
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px !important;
}
.testimonial-container {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 20px;
	text-align: center;
}
.testimonial-item {
	background: rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: 10px;
	flex: 1;
}
.testimonial-row {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.testimonial-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid black;
}
.testimonial-item p{
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px !important;
	margin-top: 15px;
	font-weight: 400;
}
.testimonial-item strong{
	color: #cc1477;
}
/* General Footer Styles */
.footer {
    background: linear-gradient(135deg, #961163, #ed1583);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 50px 0px 20px;
    letter-spacing: 1px;
    font-family: "Roboto Condensed", serif;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}
/* Footer Layout */
.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* Columns */
.footer-col {
    width: 30%;
}
/* Footer Headings */
.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    color: #ffffff;
	letter-spacing: 1px;
}
.footer p {
    text-align:justify;
	color: #fff;
}
.footer h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: -5px;
}
/* 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: "Roboto Condensed", serif;
    letter-spacing: 1px;
}
/* enquire Info */
.enquire-info {
    background: linear-gradient(135deg, #961163, #ed1583);
    color: white;
    width: 40%;
    padding: 30px;
}
.enquire-info h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
	font-size: 25px;
}
.enquire-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-family: "Roboto Condensed", 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: "Roboto Condensed", 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: "Roboto Condensed", serif;
    letter-spacing: 1px;
	font-size: 25px;
}
.enquire-form p {
    font-family: "Roboto Condensed", 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: "Roboto Condensed", 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 button {
    background: linear-gradient(135deg, #961163, #ed1583);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
}
.enquire-form button:hover {
    background: linear-gradient(135deg, #961163, #ed1583);
}
/* Footer Links */
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 12px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}
.footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}
.footer ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}
/* Font Awesome Icons */
.footer ul li i {
    margin-right: 10px;
    color: #ffffff;
    transition: 0.3s;
}
/* Hover Effect for Icons */
.footer ul li:hover i {
    color: #fff;
    text-shadow: 0 0 10px #ffffff;
}
/* Contact Info */
.footer ul li a {
    color: #ffffff;
    text-decoration: none;
	display: inline;
}

.footer ul li a:hover {
    color: #ffffff;
}
/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255);
    margin-top: 20px;
}
.footer-bottom p {
    font-size: 16px;
    text-align: center;
    color: #fff;
}
.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}
.key-feature {
	width: 100%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background: #d4e3cc;
}
.image-section {
	flex: 1;
	min-width: 300px;
	text-align: center;
}
.image-section img {
	max-width: 100%;
}
.content-section {
	flex: 2;
	min-width: 400px;
	padding: 0px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.key-feature h2 {
	text-align: left;
	color: #fff;
	font-family: "Roboto Condensed", serif;
	letter-spacing: 1px;
}
.key-feature ul {
	list-style: none;
	padding: 0;
}
.key-feature ul li {
	margin: 10px 0;
	font-size: 16px;
    line-height: 1.6;
    text-align: left;
    color: #fff;
	font-family: "Roboto Condensed", serif;
    letter-spacing: 1px;
}
.land-details, .key-landmarks {
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.land-details {
	background: #e3f2fd;
}
.key-landmarks {
	background: linear-gradient(135deg, #961163, #ed1583);
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 0;
    }
	.logo {
        float: inherit;
        padding-bottom: 15px;
        text-align: center;
        margin-top: 0px !important;
    }
    .contact-info {
        display: none; /* Hide contact info */
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
		color: #000;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav.active {
        display: flex !important;
        flex-direction: column;
        align-items: center;
		margin-top: 49px;
		background: linear-gradient(135deg, #961163, #ed1583);
    }
	.key-feature {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.content-section{
		width: 100%;
		margin-top:50px;
	}
	.image-section {
		width: 100%;
	}
	.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%;
    }
	.footer-row {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }
}