@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
/* High visibility paragraph on video background */
.hero-content p {
  color: #f1f5ff;                 /* soft white with slight blue tint */
  font-size: 1.6rem;              /* increased size */
  line-height: 2.8rem;            /* comfortable reading */
  font-weight: 400;               /* clearer than 300 */
  letter-spacing: 0.06rem;
  margin-top: 12px;

  /* 🔥 visibility boost */
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem;
    line-height: 2.1rem;
  }
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: crimson;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
}

/* ===================== NAVBAR ===================== */
/* ===================== NAVBAR ===================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: background 0.3s;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #91ff00;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a,
.dropbtn {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.dropbtn:hover {
    color: #91ff00;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.95);
    min-width: 150px;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown-content a {
    color: #fff;
    padding: 10px 20px;
    display: block;
}

.dropdown-content a:hover {
    background: #91ff00;
    color: #000;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when clicked */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= MOBILE ================= */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Dropdown for mobile */
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background: none;
        padding: 0;
        gap: 15px;
    }

    .dropdown.active .dropdown-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a,
    .dropbtn {
        font-size: 18px;
    }
}





/* Services Section */

#services {
	padding-top: 60px;   /* reduced */
	position: relative;
	z-index: 3;
  }
  
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}
#services .service-top {
	max-width: 500px;
	margin: 0 auto;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(./img/img-1.png);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#services .service-item p {
	color: white;
	text-align: left;
}
/* End Services Section */

#services {
	margin-top: -80px; /* pulls it into hero */
	padding-bottom: 100px;
  }
  
  .services-card {
	max-width: 900px;
	margin: auto;
	background: white;
	padding: 60px 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  }
  
  .services-card h1 {
	font-size: 38px;
	margin-bottom: 20px;
  }
  
  .services-card p {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
  }
  



/* Projects section */
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}
#projects .project-img img {
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}
/* End Projects section */

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid crimson;
	z-index: -1;
}
/* End About Section */

/* contact Section */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}
#contact .contact-items {
	/* max-width: 400px; */
	width: 100%;
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
/*End contact Section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */
	/* Remove extra padding/margin for mobile hero */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 20px; /* smaller padding */
    }

    /* Make hero video go under the navbar without gap */
    #hero {
        margin-top: 0; /* remove any top margin */
        height: 100vh; /* full viewport height */
    }

    #hero video {
        height: 100%;
        width: 100%;
        object-fit: cover; /* keeps video full background */
    }

    .hero-content {
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px;
        text-align: center;
    }
}


	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */

/* ============ DROPDOWN MENU ============ */

.dropdown {
  position: relative;
}

/* Hide dropdown by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #29323c;
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
}

/* Dropdown items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 12px 15px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #ffd36a;
  color: #222;
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile support (hamburger menu open) */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: transparent;
  }

  .dropdown-menu li a {
    padding-left: 30px;
  }
}

/* management things */

.management-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	margin-top: 60px;
  }
  
  .management-card {
	background: #ffffff;
	padding: 50px 30px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .management-card img {
	width: 220px;          /* BIGGER IMAGE */
	height: 280px;
	object-fit: cover;
	margin-bottom: 25px;
	border-radius: 6px;
  }
  
  .management-card h3 {
	font-size: 24px;       /* BIGGER NAME */
	font-weight: 600;
	margin-bottom: 10px;
  }
  
  .management-card p {
	font-size: 18px;       /* BIGGER ROLE TEXT */
	color: #555;
  }
  
  .management-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }
  

/* mobile responsive */

@media (max-width: 900px) {
	.management-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  
  @media (max-width: 600px) {
	.management-grid {
	  grid-template-columns: 1fr;
	}
  }
  
  
 /* Properties Section  for plot bbs bam puri*/ 

#properties {
	background: #f8f8f8;
	padding: 100px 0;
  }
  
  .property-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
  }
  
  .property-card {
	background: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
  }
  
  .property-card:hover {
	transform: translateY(-10px);
  }
  
  .property-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
  }
  
  .property-card h3 {
	font-size: 22px;
	margin-bottom: 8px;
  }
  
  .property-card p {
	font-size: 14px;
	color: #555;
  }
  
  .property-card span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0;
	color: crimson;
  }
  
  .property-card button {
	padding: 10px 25px;
	border: none;
	background: crimson;
	color: #fff;
	font-size: 14px;
	border-radius: 20px;
	cursor: pointer;
  }
  
  .property-card button:hover {
	background: #000;
  }

  #properties {
	padding: 80px 0 120px;
	background: #f8f8f8;
  }
  
  .section-title {
	margin-bottom: 20px;
  }
  
  .city-filters {
	justify-content: center;
	margin-bottom: 50px;
  }
  
  
  /* Responsive */
  @media (max-width: 900px) {
	.property-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  
  @media (max-width: 600px) {
	.property-grid {
	  grid-template-columns: 1fr;
	}
  }
  

  .property-filters {
	text-align: center;
	margin: 30px 0;
  }
  
  .property-filters button {
	padding: 10px 18px;
	margin: 5px;
	border: none;
	border-radius: 20px;
	background: #eee;
	cursor: pointer;
	font-size: 14px;
  }
  
  .property-filters button:hover {
	background: crimson;
	color: #fff;
  }

  /* City Filter Styling */
.city-filters {
	display: flex;
	gap: 12px;
	margin: 25px 0;
	flex-wrap: wrap;
  }
  
  .filter-btn {
	padding: 10px 18px;
	border-radius: 30px;
	border: 1.5px solid #e11d48;
	background: white;
	color: #e11d48;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .filter-btn:hover {
	background: #e11d48;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(225, 29, 72, 0.3);
  }
  
  .filter-btn.active {
	background: #e11d48;
	color: white;
	box-shadow: 0 6px 15px rgba(225, 29, 72, 0.35);
  }

 /* ===== PREMIUM REAL ESTATE FOOTER ===== */

#footer {
	background: radial-gradient(circle at top, #1f2933, #020617);
	color: #e5e7eb;
  }
  
  .footer-container {
	max-width: 1200px;
	margin: auto;
	padding: 70px 20px 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
  }
  
  .footer-col h2 {
	font-size: 28px;
	color: white;
  }
  
  .footer-col h3 {
	font-size: 18px;
	color: white;
	margin-bottom: 10px;
  }
  
  .footer-line {
	width: 55px;
	height: 3px;
	background: crimson;
	margin: 12px 0;
  }
  
  .footer-col p, 
  .footer-col a {
	font-size: 14px;
	color: #cbd5e1;
	line-height: 1.8;
  }
  
  .footer-col a:hover {
	color: crimson;
	padding-left: 5px;
  }
  
  .social-icons {
	display: flex;
	gap: 12px;
	margin-top: 10px;
  }
  
  .social-icons a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1f2937;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: 0.3s;
  }
  
  .social-icons a:hover {
	background: crimson;
	transform: translateY(-4px);
  }
  
  .footer-bottom {
	text-align: center;
	padding: 18px;
	font-size: 13px;
	background: #020617;
	color: #9ca3af;
	border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
	.footer-container {
	  grid-template-columns: 1fr;
	  text-align: center;
	}
	.footer-line {
	  margin: 10px auto;
	}
	.social-icons {
	  justify-content: center;
	}
  }
  

  body {
	background: #f9fafb;
  }
  
  .section-title {
	letter-spacing: 2px;
  }
  
  .property-card, .management-card {
	border-radius: 14px;
  }
  
  .property-card button {
	font-weight: 600;
  }
/* ===== FIX FOOTER ALIGNMENT & WIDTH ===== */

#footer {
	width: 100%;
	margin: 0;
	padding: 0;
  }
  
  .footer-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
  }
  
  body {
	overflow-x: hidden;
  }

  .footer-col {
	align-items: flex-start;
  }
  
  @media (max-width: 900px) {
	.footer-col {
	  align-items: center;
	}
  }
  
  .footer-bottom {
	padding: 14px;
  }

 /* ===== TESTIMONIALS ===== */
#testimonials {
	padding: 100px 20px;
	background: linear-gradient(180deg, #0c1622, #02060d);
  }
  
  .testimonials-container {
	max-width: 1200px;
	margin: auto;
	flex-direction: column;
  }
  
  .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
  }
  
  .testimonial-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	padding: 30px;
	border-radius: 18px;
	color: #fff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }
  
  .testimonial-card p {
	font-size: 15px;
	line-height: 1.7;
	color: #dcdcdc;
  }
  
  .testimonial-card h3 {
	margin-top: 20px;
	font-size: 18px;
	color: #fff;
  }
  
  .testimonial-card span {
	font-size: 14px;
	color: #ff4c4c;
  }
  
  /* ===== FLOATING CHAT BUTTON ===== */
.floating-chat {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: #fff;
	padding: 14px 20px;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	z-index: 9999;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .floating-chat img {
	width: 22px;
	height: 22px;
  }
  
  .floating-chat:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }


  /* ===== EMI CALCULATOR ===== */
#emi {
	padding: 100px 20px;
	background: linear-gradient(180deg, #02060d, #0c1622);
  }
  
  .emi-container {
	flex-direction: column;
	max-width: 900px;
	margin: auto;
  }
  
  .emi-box {
	margin-top: 50px;
	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(12px);
	padding: 40px;
	border-radius: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
  }
  
  .emi-input label {
	font-size: 14px;
	color: #ccc;
  }
  
  .emi-input input {
	width: 100%;
	padding: 12px;
	margin-top: 6px;
	border-radius: 10px;
	border: none;
	outline: none;
  }
  
  .emi-box button {
	grid-column: 1 / -1;
	padding: 14px;
	background: crimson;
	color: white;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
  }
  
  #emi-result {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 20px;
	color: #25d366;
  }


  .section-transition {
	height: 120px;
	background: linear-gradient(
	  to bottom,
	  rgba(2, 6, 13, 0),
	  rgba(2, 6, 13, 1)
	);
  }


  /* ================= GLOBAL FIXES ================= */

html, body {
	width: 100%;
	overflow-x: hidden;
  }
  
  .container {
	min-height: auto;
  }
  
  /* Consistent section spacing */
  section {
	padding: 80px 0;
  }
  
  /* Title scaling fix */
  .section-title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	margin-bottom: 40px;
  }
  
  /* ================= HEADER MOBILE FIX ================= */
  @media (max-width: 768px) {
	#header .nav-list ul {
	  padding-top: 80px;
	}
  }
  
  /* ================= HERO RESPONSIVE ================= */
  @media (max-width: 768px) {
	.hero-content h1 {
	  font-size: 2.8rem;
	}
	.hero-content p {
	  font-size: 1.5rem;
	}
  }
  
  /* ================= SERVICES CARD FIX ================= */
  @media (max-width: 768px) {
	.services-card {
	  padding: 40px 20px;
	  margin: 0 15px;
	}
  }
  
  /* ================= PROPERTIES GRID FIX ================= */
  .property-grid {
	max-width: 1200px;
	margin: auto;
  }
  
  @media (max-width: 900px) {
	.property-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 25px;
	}
  }
  
  @media (max-width: 600px) {
	.property-grid {
	  grid-template-columns: 1fr;
	}
  }
  
  /* ================= MANAGEMENT FIX ================= */
  .management-container {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
  }
  
  /* ================= EMI FIX ================= */
  @media (max-width: 768px) {
	.emi-box {
	  padding: 25px;
	}
  }
  
  /* ================= TESTIMONIAL FIX ================= */
  @media (max-width: 768px) {
	.testimonial-card {
	  padding: 22px;
	}
  }
  
  /* ================= FOOTER PERFECT FIX ================= */
  #footer {
	padding-top: 60px;
  }
  
  .footer-container {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	padding: 50px 20px;
  }
  
  .footer-col {
	text-align: left;
  }
  
  @media (max-width: 768px) {
	.footer-col {
	  text-align: center;
	}
  }
  
  /* ================= BUTTON CONSISTENCY ================= */
  .property-card button,
  .emi-box button,
  .hero-btn {
	transition: 0.3s ease;
  }
  
  .property-card button:hover,
  .emi-box button:hover,
  .hero-btn:hover {
	transform: translateY(-3px);
	opacity: 0.9;
  }
  
  /* ===== PROPERTIES LAYOUT FIX ===== */

.properties-inner {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
	text-align: center;
  }
  
  /* Grid balance */
  .property-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	margin-top: 50px;
  }
  
  /* Desktop */
  @media (min-width: 1200px) {
	.property-grid {
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	}
  }
  
  /* Tablet */
  @media (max-width: 900px) {
	.property-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  
  /* Mobile */
  @media (max-width: 600px) {
	.property-grid {
	  grid-template-columns: 1fr;
	}
  }
  
  /* Center filters properly */
  .city-filters {
	justify-content: center;
  }


  /* ===================== PROJECTS ===================== */
.projects {
    padding: 60px 20px;
    text-align: center;
}
.projects h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007bff;
}
.project-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.project-card {
    background: white;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.project-card h3 {
    margin: 15px 0 5px;
}
.project-card p {
    color: gray;
    margin-bottom: 15px;
}
.project-card .btn {
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.project-card .btn:hover {
    background: #0056b3;
}

/* ================= HERO SECTION ================= */
#hero {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
  }
  
  /* Video background */
  #hero video,
  .hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.55);
  }
  
 
  
  /* Content positioning */
  .hero-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	color: #fff;
  }
  
  /* Heading */
  .hero-content h1 {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 5px 25px rgba(0,0,0,0.6);
  }
  
  /* Sub text */
  .hero-content p {
	font-size: 1.2rem;
	max-width: 650px;
	margin-bottom: 30px;
	opacity: 0.95;
  }
  
  /* CTA button */
  .hero-btn {
	padding: 14px 36px;
	background: #ff0000;
	color: #000;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
  }
  
  .hero-btn:hover {
	background: #fff;
	transform: translateY(-3px);
  }
  
  /* Smooth bottom transition */
  .hero-transition {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(to bottom, transparent, #f6f7fb);
	z-index: 4;
  }
  
  /* ================= MOBILE RESPONSIVE ================= */
  @media (max-width: 768px) {
	.hero-content h1 {
	  font-size: 2.2rem;
	}
  
	.hero-content p {
	  font-size: 1rem;
	}
  }
/* RESET GAP ISSUE */
body {
  margin: 0;
  padding: 0;
}

.navbar {
  position: fixed;      /* 🔥 IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #91ff00;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a,
.dropbtn {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #91ff00;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #000;
  border-radius: 6px;
  min-width: 160px;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #fff;
}

.dropdown-content a:hover {
  background: #91ff00;
  color: #000;
}

.dropdown.active .dropdown-content {
  display: block;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ANIMATION */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .dropdown-content {
    position: static;
    background: none;
  }

  .dropdown-content a {
    text-align: center;
  }
}

/* ================= ABOUT CRAZY ================= */
.about-crazy {
  padding: 100px 8%;
  background: #0b1020;
  color: #fff;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #91ff00;
  color: #000;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
}

.image-badge h3 {
  font-size: 2rem;
  margin: 0;
}

.image-badge span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* RIGHT CONTENT */
.about-tag {
  color: #91ff00;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.about-content h1 {
  font-size: 3rem;
  line-height: 3.6rem;
  margin-bottom: 20px;
}

.about-content h1 span {
  color: #91ff00;
}

.about-lead {
  font-size: 1.3rem;
  color: #e4e9ff;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 2.1rem;
  color: #cfd6ff;
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.about-points div {
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}

.about-stats h2 {
  color: #91ff00;
  font-size: 2.4rem;
}

.about-stats span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 360px;
  }

  .about-content h1 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-stats {
    justify-content: space-between;
  }
}

/* ===== WHY SWASTI REALCON ===== */
.why-swasti {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
}

.why-swasti .section-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 60px;
  color: #fff;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.why-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid crimson;
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffd700; /* GOLD for impact */
}

.why-card p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #f0f0f0;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}



/* ===== FLIP CARDS WITH CRAZY EFFECTS ===== */
#properties-flip {
  padding: 80px 20px;
  background: #f0f2f5;
  text-align: center;
}

.flip-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.flip-card {
  background-color: transparent;
  width: 280px;
  height: 380px;
  perspective: 1200px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Flip on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  backface-visibility: hidden;
}

/* Front with parallax effect */
.flip-card-front {
  background-color: #fff;
  color: #000;
  overflow: hidden;
  transition: transform 0.5s;
}

.flip-card-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flip-card:hover .flip-card-front img {
  transform: scale(1.1) rotate(2deg);
}

.flip-card-front h3 {
  margin: 15px 0;
  font-size: 1.8rem;
  color: #1f2937;
}

/* Back with glowing gradient animation */
.flip-card-back {
  background: linear-gradient(270deg, #29323c, #485563, #6e7d88);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.flip-card-back h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.flip-card-back p {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.flip-card-back button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: crimson;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.flip-card-back button:hover {
  background: #ff6b6b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,107,107,0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .flip-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .flip-grid {
    flex-direction: column;
    align-items: center;
  }
}



  
  
  


  


  
  

  

  


  


  
  

  










