*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#ffffff;
color:#111;
overflow-x:hidden;
}

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

a{
text-decoration:none;
}

img{
max-width:100%;
}

.header-login{
display:flex;
align-items:center;
gap:10px;
margin-left:20px;
}

.employee-login-btn,
.admin-login-btn{
padding:10px 16px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:.3s;
white-space:nowrap;
}

.employee-login-btn{
background:#42C9F5;
color:#fff;
}

.employee-login-btn:hover{
background:#1ea8d5;
}

.admin-login-btn{
background:#111827;
color:#fff;
}

.admin-login-btn:hover{
background:#333;
}

/* COLORS

Blue:
#42C9F5

Black:
#000

Light:
#F7F9FB

*/
/* HEADER */

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.navbar{
height:110px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:250px;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:#000;
font-size:15px;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#42C9F5;
}

.header-buttons{
display:flex;
gap:12px;
}

.call-btn{
background:#000;
color:#fff;
padding:12px 22px;
border-radius:10px;
font-size:14px;
font-weight:600;
}

.whatsapp-btn{
background:#42C9F5;
color:#fff;
padding:12px 22px;
border-radius:10px;
font-size:14px;
font-weight:600;
}

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
}
@media(max-width:992px){

nav{
position:fixed;
top:110px;
left:-100%;
width:280px;
height:auto;
background:#fff;
flex-direction:column;
padding:30px;
gap:25px;
transition:.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

nav.active{
left:0;
}

.menu-toggle{
display:block;
}

.header-buttons{
display:none;
}

.logo img{
height:150px;
}

}
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
z-index:999;
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
/* HERO */

.hero{
height:100vh;
background:
linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.45)
),

url('../images/hero.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
}

.hero-content{
max-width:750px;
color:#fff;
}

.hero-content h1{
font-size:70px;
line-height:1.2;
margin-bottom:25px;
font-weight:700;
}

.hero-content span{
color:#42C9F5;
}

.hero-content p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-btn{
background:#42C9F5;
color:#fff;
padding:16px 32px;
border-radius:12px;
font-weight:600;
}

.hero-btn-outline{
border:2px solid #fff;
color:#fff;
padding:16px 32px;
border-radius:12px;
font-weight:600;
}

.hero-btn:hover,
.hero-btn-outline:hover{
transform:translateY(-2px);
transition:.3s;
}
.about-home{
padding:100px 0;
}

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

.about-grid h2{
font-size:42px;
margin-bottom:20px;
}

.about-grid p{
line-height:2;
color:#666;
}

.stats-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.stat-box{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
text-align:center;
}

.stat-box h3{
font-size:40px;
color:#42C9F5;
margin-bottom:10px;
}

.featured-properties{
padding:100px 0;
background:#f8fafc;
}

.section-heading{
text-align:center;
margin-bottom:50px;
}

.section-heading h2{
font-size:42px;
}

.property-scroll{
display:flex;
gap:25px;
overflow-x:auto;
padding-bottom:10px;
scroll-behavior:smooth;
}

.property-scroll::-webkit-scrollbar{
height:8px;
}

.featured-card{
min-width:350px;
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.featured-card img{
width:100%;
height:240px;
object-fit:cover;
}

.featured-card h3{
padding:20px;
font-size:22px;
}

.featured-card .price{
padding:0 20px;
color:#42C9F5;
font-weight:700;
font-size:22px;
}

.featured-card a{
display:block;
margin:20px;
padding:14px;
background:#000;
color:#fff;
text-align:center;
border-radius:10px;
}

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

.founder-card{
background:#fff;
padding:40px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.founder-icon{
width:90px;
height:90px;
background:#42C9F5;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
font-size:26px;
font-weight:700;
margin-bottom:20px;
}

.founder-card h3{
margin-bottom:10px;
}

.founder-card p{
color:#666;
}

@media(max-width:768px){

.founders-grid{
grid-template-columns:1fr;
}
.header-login{
width:100%;
justify-content:center;
margin-top:12px;
margin-left:0;
}

.employee-login-btn,
.admin-login-btn{
flex:1;
text-align:center;
font-size:13px;
padding:10px;
}
}

/* WHY CHOOSE */

.why-choose{
padding:100px 0;
background:#f8fafc;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.why-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-icon{
width:70px;
height:70px;
background:#42C9F5;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin:auto;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
font-size:22px;
}

.why-card p{
color:#666;
line-height:1.8;
}

@media(max-width:992px){

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

}

@media(max-width:768px){

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

}
/* CTA */

.cta-section{
padding:100px 0;
}

.cta-box{
background:#000;
padding:80px 50px;
border-radius:30px;
text-align:center;
}

.cta-box h2{
color:#fff;
font-size:48px;
margin-bottom:20px;
}

.cta-box p{
color:#ddd;
max-width:800px;
margin:auto;
line-height:1.8;
margin-bottom:35px;
}

.cta-btn{
background:#42C9F5;
color:#fff;
padding:18px 35px;
border-radius:12px;
display:inline-block;
font-weight:600;
}

@media(max-width:768px){

.cta-box{
padding:50px 25px;
}

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

}

/* PAGE BANNER */

.page-banner{
padding:180px 0 100px;
background:linear-gradient(
135deg,
#111827,
#1f2937,
#42C9F5
);
text-align:center;
}

.page-banner h1{
color:#fff;
font-size:60px;
font-weight:700;
}

.page-banner p{
color:#e5e7eb;
}

.page-banner p{
color:#ccc;
font-size:18px;
}

/* ABOUT PAGE */

.about-page{
padding:100px 0;
}

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

.about-page h2{
font-size:42px;
margin-bottom:25px;
}

.about-page p{
line-height:2;
margin-bottom:20px;
color:#666;
}

.about-image{
width:100%;
border-radius:25px;
}

/* MISSION */

.mission-section{
padding-bottom:100px;
}

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

.mission-box{
padding:35px;
background:#fff;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mission-box h3{
margin-bottom:15px;
color:#42C9F5;
}

@media(max-width:768px){

.page-banner h1{
font-size:38px;
}

.about-page-grid{
grid-template-columns:1fr;
}

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

}
/* PROPERTIES PAGE */

.properties-page{
padding:100px 0;
}

.search-box{
margin-bottom:50px;
}

.search-box form{
display:flex;
gap:15px;
}

.search-box input{
flex:1;
padding:16px;
border:1px solid #ddd;
border-radius:12px;
font-size:15px;
}

.search-box button{
background:#42C9F5;
border:none;
padding:16px 30px;
border-radius:12px;
color:#fff;
font-weight:600;
cursor:pointer;
}

/* GRID */

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

/* CARD */

.property-card{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.property-card:hover{
transform:translateY(-8px);
}

/* IMAGE SCROLL */

.property-slider{
display:flex;
overflow-x:auto;
scroll-snap-type:x mandatory;
}

.property-slider img{
min-width:100%;
height:260px;
object-fit:cover;
scroll-snap-align:start;
}

/* CONTENT */

.property-content{
padding:25px;
}

.property-content h3{
margin-bottom:15px;
font-size:24px;
}

.property-price{
font-size:24px;
font-weight:700;
color:#42C9F5;
margin-bottom:10px;
}

.property-size{
color:#666;
margin-bottom:20px;
}

.view-btn{
display:block;
background:#000;
color:#fff;
padding:14px;
text-align:center;
border-radius:10px;
}

/* MOBILE */

@media(max-width:992px){

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

}

@media(max-width:768px){

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

.search-box form{
flex-direction:column;
}

}

html{
scroll-behavior:smooth;
}

.footer{
background:#000;
padding:80px 0 30px;
color:#fff;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr 0.5fr;
gap:40px;
}

.footer-logo{
height:100px;
width:auto;
margin-bottom:20px;
}

.footer h4{
margin-bottom:20px;
color:#42C9F5;
}

.footer a{
color:#ddd;
line-height:2;
}

.footer p{
color:#ccc;
line-height:1.8;
}

.copyright{
text-align:center;
padding-top:25px;
color:#aaa;
font-size:14px;
border-top:1px solid rgba(255,255,255,.1);
margin-top:20px;
}

.hero-btn,
.cta-btn,
.view-btn,
.call-btn,
.whatsapp-btn{
transition:.3s;
}

.hero-btn:hover,
.cta-btn:hover,
.view-btn:hover,
.call-btn:hover,
.whatsapp-btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.hero{
height:auto;
padding:170px 0 100px;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
}

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

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

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

.footer{
text-align:center;
}

}
/* CONTACT PAGE */

.contact-section{
padding:100px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.contact-info h2{
font-size:42px;
margin-bottom:20px;
}

.contact-info p{
line-height:1.8;
color:#666;
}

.contact-item{
margin-top:25px;
}

.contact-item strong{
display:block;
margin-bottom:8px;
}

.whatsapp-contact-btn{
display:inline-block;
margin-top:30px;
background:#25D366;
color:#fff;
padding:15px 25px;
border-radius:12px;
}

.contact-form-box{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box h3{
margin-bottom:25px;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:12px;
margin-bottom:15px;
outline:none;
}

.contact-form-box textarea{
height:130px;
resize:none;
}

.contact-form-box button{
width:100%;
background:#42C9F5;
color:#fff;
border:none;
padding:15px;
border-radius:12px;
font-weight:600;
cursor:pointer;
}

.success-message{
background:#d4edda;
color:#155724;
padding:15px;
border-radius:12px;
margin-bottom:20px;
}

.map-section{
padding-bottom:100px;
}

@media(max-width:768px){

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

}

/* PROPERTY DETAILS */

.property-details-section{
padding:100px 0;
}

.property-details-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.property-slider-main{
position:relative;
height:500px;
border-radius:25px;
overflow:hidden;
margin-bottom:20px;
}

.main-slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:.4s;
}

.main-slide.active{
opacity:1;
}

.thumbs{
display:flex;
gap:15px;
}

.thumb{
width:120px;
height:90px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
border:3px solid transparent;
}

.active-thumb{
border-color:#42C9F5;
}

.property-detail-title{
font-size:42px;
margin-bottom:15px;
}

.detail-price{
font-size:34px;
font-weight:700;
color:#42C9F5;
margin-bottom:15px;
}

.detail-size{
margin-bottom:25px;
color:#666;
}

.detail-description{
line-height:2;
margin-bottom:30px;
color:#666;
}

.amenity-heading{
margin-bottom:20px;
}

.amenities-list{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:35px;
}

.amenity-badge{
background:#f4f7fb;
padding:10px 15px;
border-radius:30px;
}

.enquiry-box{
background:#fff;
padding:30px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.enquiry-box input,
.enquiry-box textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:12px;
margin-bottom:15px;
}

.enquiry-box textarea{
height:120px;
resize:none;
}

.enquiry-box button{
width:100%;
background:#42C9F5;
color:#fff;
border:none;
padding:15px;
border-radius:12px;
cursor:pointer;
}

@media(max-width:768px){

.property-details-grid{
grid-template-columns:1fr;
}

.property-slider-main{
height:320px;
}

.property-detail-title{
font-size:30px;
}

}
@media(max-width:768px){

.property-box{
padding:20px;
border-radius:15px;
}

.form-group input,
.form-group textarea{
padding:12px;
font-size:14px;
}

.save-btn{
width:100%;
padding:14px;
font-size:15px;
}

h1{
font-size:24px;
}

}

.property-details-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.property-main-img,
.property-slider img{
width:100%;
height:500px;
object-fit:cover;
border-radius:20px;
}

.property-form{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 0 25px rgba(0,0,0,0.08);
}

.property-form input,
.property-form textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:12px;
margin-bottom:15px;
font-size:15px;
}

.property-btn{
width:100%;
padding:15px;
background:#42C9F5;
border:none;
border-radius:12px;
color:#fff;
font-size:16px;
font-weight:600;
}

@media(max-width:992px){

.property-details-grid{
grid-template-columns:1fr;
gap:25px;
}

.property-main-img,
.property-slider img{
height:280px;
}

.property-title{
font-size:28px !important;
line-height:1.3;
}

.property-price{
font-size:24px !important;
}

.property-description{
font-size:15px;
line-height:1.8;
}

.property-form{
padding:20px;
}

.amenities-box{
gap:10px;
}

.amenity{
font-size:13px;
padding:10px 14px;
}

}

@media(max-width:576px){

.property-main-img,
.property-slider img{
height:220px;
border-radius:15px;
}

.property-title{
font-size:24px !important;
}

.property-price{
font-size:22px !important;
}

.property-form h3{
font-size:22px;
}

.property-form input,
.property-form textarea{
padding:12px;
font-size:14px;
}

.property-btn{
padding:14px;
font-size:15px;
}

}
.admin-login-btn{
display:inline-block;
background:#42C9F5;
color:#fff;
padding:12px 20px;
border-radius:10px;
font-weight:600;
text-decoration:none;
margin-top:10px;
}

.admin-login-btn:hover{
opacity:.9;
}
.header-phone{
font-size:16px;
font-weight:600;
color:#000;
}

@media(max-width:768px){

.header-phone{
font-size:14px;
}

}
.header-phone a{
color:#000;
text-decoration:none;
font-weight:600;
}
@media(max-width:768px){

.header-phone{
display:none;
}

}