@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'DM Sans',sans-serif;
line-height:1.6;
color:#222;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.top-marquee{
background:#314660;
color:#fff;
padding:10px 0;
overflow:hidden;
white-space:nowrap;
font-family:'DM Sans',sans-serif;
font-size:15px;
font-weight:bold;
}

.marquee-track{
display:inline-block;
padding-left:100%;
animation:scrollText 35s linear infinite;
}

@keyframes scrollText{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-100%);
}
}

.gov-header{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:18px 50px;
background:#ffffff;
flex-wrap:nowrap; /* important */
}

.gov-logos{
display:flex;
align-items:center;
gap:35px;
flex-shrink:0;
}

.gov-logos img{
height:60px;
width:auto;
}

.allocation-blink{
font-size:23px;
font-weight:600;
color:#1e49b8;
white-space:nowrap;
animation:blink 1.5s infinite;
}

@keyframes blink{
50%{opacity:.4;}
}

.reg_btn{
	    background: #021e68 !important;
}

.helpline-btn{
background:#ff5a17;
color:#fff;
text-decoration:none;
font-size:20px;
font-weight:700;
padding:10px 20px;
border-radius:70px;
white-space:nowrap;
position:relative;
display:inline-block;
flex-shrink:0;
z-index:2;
overflow:visible;
}

/* Ripple Ring 1 */
.helpline-btn:before{
content:"";
position:absolute;
top:-14px;
left:-14px;
right:-14px;
bottom:-14px;
border:10px solid #d8d8d8;
border-radius:90px;
z-index:-1;
animation:splash1 2s infinite;
}

/* Ripple Ring 2 */
.helpline-btn:after{
content:"";
position:absolute;
top:-14px;
left:-14px;
right:-14px;
bottom:-14px;
border:10px solid #d8d8d8;
border-radius:90px;
z-index:-1;
animation:splash2 2s infinite 1s;
}

@keyframes splash1{
0%{
transform:scale(1);
opacity:1;
}
100%{
transform:scale(1.18);
opacity:0;
}
}

@keyframes splash2{
0%{
transform:scale(1);
opacity:1;
}
100%{
transform:scale(1.18);
opacity:0;
}
}

.section{
	width: 100%;
	padding: 60px 0;
}

@media(min-width: 568px){
	.mobile-banner{
		display: none;
	}
}

@media(max-width: 567px){
	.desktop-banner{
		display: none;
	}
}

/* ---------- MOBILE ---------- */
@media(max-width:768px){

	

.gov-header{
flex-direction:column;
justify-content:center;
text-align:center;
gap:20px;
padding:20px 5px;
}

.gov-logos{
justify-content:center;
flex-wrap:wrap;
gap:15px;
}

.gov-logos img{
height:32px;
}

.allocation-blink{
font-size:18px;
line-height:1.4;
white-space:normal;
}

.helpline-btn{
font-size:18px;
padding:14px 25px;
width:90%;
max-width:340px;
}

.helpline-btn:before,
.helpline-btn:after{
inset:-10px;
border-width:7px;
}

}

/* Extra small phones */
@media(max-width:480px){

.allocation-blink{
font-size:20px;
}

.helpline-btn{
font-size:16px;
padding:12px 20px;
}

.gov-logos img{
height:60px;
}

}

.img{
	width: 100%;
}

.registration-alert{
background:#ffd500;
padding:10px 20px;
text-align:center;
}

.registration-alert span{
font-family:'DM Sans',sans-serif;
font-size:25px;
font-weight:800;
color:#1745b8;
letter-spacing:1px;
animation:blinkText 1s infinite;
}

@keyframes blinkText{
0%,100%{
opacity:1;
}
50%{
opacity:.15;
}
}

/* Mobile */
@media(max-width:768px){
.registration-alert span{
font-size:32px;
}
}

.investment-section{
background:#FFF3E2;
padding:30px 70px 30px 70px;
font-family:'DM Sans',sans-serif;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:32px;
font-style:italic;
font-weight:700;
color:#173f8f;
margin-bottom:20px;
}

.title-line{
width:300px;
height:4px;
background:#173f8f;
margin:auto;
}

.investment-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.investment-card{
background:#f4ecdc00;
border:1px solid #868686;
border-radius:28px;
padding:5px 35px 25px;
text-align:center;
transition:.3s;
}

.commercial-shops-section{
background:#f4f4f4;
padding:90px 5%;
font-family:'DM Sans',sans-serif;
}

.container{
max-width:1400px;
margin:auto;
}

.content-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
}

.content-left h1{
font-size:32px;
font-weight:800;
color:#0d6b2f;
text-transform:uppercase;
line-height:1.2;
}

.content-left h2{
font-size:28px;
font-weight:800;
color:#0d6b2f;
text-transform:uppercase;
line-height:1.2;
margin-bottom: 20px;
}

.content-left h3{
font-size:22px;
font-weight:500;
color:#000000;
line-height:1.2;
margin:20px 0 20px;
}

.content-left p{
font-size:18px;
color:#222;
margin-bottom:25px;
}

.content-left strong{
font-weight:800;
}

.content-right img{
width:100%;
height:auto;
display:block;
border-radius:6px;
}

/* Tablet */
@media(max-width:1100px){

.content-grid{
grid-template-columns:1fr;
gap:50px;
}

.content-right{
order:-1;
}

.content-left h2{
font-size:48px;
}

.content-left h3{
font-size:42px;
}

.content-left p{
font-size:23px;
}

}

/* Mobile */
@media(max-width:768px){

.commercial-shops-section{
padding:60px 20px;
}

.content-left h2{
font-size:34px;
margin-bottom:20px;
}

.content-left h3{
font-size:30px;
margin:40px 0 20px;
}

.content-left p{
font-size:18px;
line-height:1.7;
}

.content-grid{
gap:30px;
}

}


.brands-section{
background:#f5f1e8;
padding:50px 30px;
font-family:'DM Sans',sans-serif;
}

.brands-section h2{
text-align:center;
font-size:32px;
font-weight:700;
text-transform: uppercase;
color:#1d1d1d;
margin-bottom:30px;
}

.brands-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.brand-card{
background:#f5f1e8;
border-radius:26px;
display:flex;
align-items:center;
justify-content:center;
padding:5px;
transition:.3s;
}

.brand-card img{
max-width:100%;
max-height:120px;
object-fit:contain;
display:block;
}

/* Laptop */
@media(max-width:1200px){
.brands-grid{
grid-template-columns:repeat(3,1fr);
}
}

/* Tablet */
@media(max-width:768px){

.brands-section{
padding:60px 20px;
}

.brands-section h2{
font-size:42px;
margin-bottom:35px;
}

.brands-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.brand-card{
min-height:160px;
padding:25px;
border-radius:18px;
}

.brand-card img{
max-height:70px;
}

}

/* Small mobile */
@media(max-width:480px){

.brands-grid{
grid-template-columns:1fr 1fr;
}

.brands-section h2{
font-size:34px;
}

.brand-card{
min-height:130px;
}

.brand-card img{
max-height:55px;
}

}

body{
font-family:'DM Sans',sans-serif;
margin:0;
}

.container{
max-width:1400px;
margin:auto;
padding:0 20px;
}

/* Common */
.project-info{
background:#fff;
padding:80px 0;
}

.info-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.reverse{
direction:rtl;
}

.reverse *{
direction:ltr;
}

.image-box img{
width:100%;
display:block;
border-radius:12px;
box-shadow:0 8px 30px rgba(0,0,0,.12);
}

.content-box h2{
font-size:48px;
margin-bottom:20px;
}

.content-box p{
font-size:22px;
line-height:1.7;
}

.content-box ul{
padding-left:25px;
}

.content-box li{
font-size:22px;
margin-bottom:18px;
line-height:1.5;
}

/* Amenities */
.amenities-section{
background:#f4efe3;
padding:80px 0;
}

.amenities-section h2,
.contact-section h2{
text-align:center;
font-size:54px;
margin-bottom:50px;
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.amenity-card{
background:#fff;
padding:20px;
border-radius:16px;
text-align:center;
border:1px solid #ccc;
}

.amenity-card img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.amenity-card h3{
font-size:24px;
}

/* Contact */
.contact-section{
padding:80px 0;
background:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-card{
background:#f4efe3;
padding:45px;
border-radius:18px;
}

.contact-card h3{
font-size:34px;
margin-bottom:30px;
}

.contact-card p{
font-size:22px;
line-height:1.7;
}

form{
display:flex;
flex-direction:column;
gap:18px;
}

input,
textarea{
padding:15px;
border:1px solid #ccc;
font-size:18px;
border-radius:8px;
}

textarea{
height:150px;
}

button{
background:#1745b8;
color:#fff;
border:none;
padding:15px 35px;
font-size:18px;
border-radius:8px;
cursor:pointer;
}

/* Tablet */
@media(max-width:992px){

.info-row,
.contact-grid{
grid-template-columns:1fr;
}

.amenities-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:768px){

.content-box h2{
font-size:32px;
}

.content-box p,
.content-box li{
font-size:18px;
}

.amenities-section h2,
.contact-section h2{
font-size:34px;
}

.amenities-grid{
grid-template-columns:1fr;
}

.amenity-card h3{
font-size:22px;
}

.contact-card{
padding:30px;
}

.contact-card h3{
font-size:28px;
}

.contact-card p{
font-size:18px;
}

}



form{
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.form .form-group{
	margin-bottom: 10px;
}

.form label{
	font-size: 13px !important;
}

.form .form-control{
	font-size: 13px !important;
	line-height: 2.5 !important;
	border-radius: 0 !important;
}

input,textarea{
padding:14px;
border:1px solid #ccc;
border-radius:6px;
}

button{
background:#000;
color:#fff;
border:none;
padding:14px;
cursor:pointer;
border-radius:6px;
}

footer{
background:#111;
color:#fff;
padding:25px 0;
text-align:center;
margin-top:50px;
}

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
}

.hero h2{
font-size:34px;
}

}

.section_bg{
	background:#f4f4f4;
}

.section_bg2{
	background:#f5f1e8;
}

.heading h2{
	text-transform: uppercase;
    font-weight: 600;
    color: #021e68;
    margin-bottom: 20px;
}

.content h4{
	font-size: 22px;
}

.content p{
	font-size: 18px;
}

.content ul{
	line-height: 2;
    font-size: 22px;
    padding-left: 15px;
}

.contact_card{
	background: #f4efe3;
    padding: 45px;
    border-radius: 18px;
}

.contact_card h3{
	font-size: 34px;
    margin-bottom: 30px;
}

.contact_card p {
    font-size: 22px;
    line-height: 1.7;
}

@media(max-width:567px){
	.contact_card{
		padding: 25px;
	}
	.contact_card h3 {
	    font-size: 24px;
	}
	.contact_card p {
	    font-size: 15px;
	}
	.heading h2{
		font-size: 20px;
	}
	.content h4 {
	    font-size: 17px;
	}
	.content p {
	    font-size: 15px;
	}
	.content ul {
	    line-height: 1.5;
	    font-size: 15px;
	}
}