

body{
background:white;
font-family:Arial;
padding-top:110px;
}

/* FULL WIDTH NAVBAR */

.glass-navbar{
    
overflow:visible;

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

padding:1px 0;

background:transparent;

transition:all 0.3s ease;

}

/* SCROLL EFFECT */

.glass-navbar.scrolled{

background:rgba(210, 220, 210, 0.3);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);



box-shadow:0 8px 32px rgba(0,0,0,0.12);

padding:8px 0;

}

/* CONTAINER */

.nav-container{

display:flex;

align-items:center;

justify-content:space-between;


}

/* LOGO */

.logo{

font-size:36px;

font-weight:800;

color:white;

text-decoration:none;

letter-spacing:1px;

}

/* MENU */

.nav-menu{

display:flex;

align-items:center;

gap:20px;

list-style:none;

margin:0;

padding:0;

}

.nav-menu a{

position:relative;

font-size:15px;

font-weight:700;

letter-spacing:2px;

text-transform:capitalize;

text-decoration:none;

color:#626567;

transition:0.3s;

}

.nav-menu a:hover{

color:#60a5fa;

}

/* HOVER LINE */

.nav-menu a::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#60a5fa;

transition:0.3s;

}

.nav-menu a:hover::after{

width:100%;

}

/* SEARCH */

.glass-search{

display:flex;

align-items:center;

background:rgba(255,255,255,0.12);

border-radius:50px;

overflow:hidden;

border:1px solid rgba(255,255,255,0.15);

backdrop-filter:blur(10px);

}

.glass-search input{

width:240px;

height:52px;

border:none;

outline:none;

background:transparent;

padding:0 22px;

color:white;

font-size:15px;

}

.glass-search input::placeholder{

color:rgba(255,255,255,0.7);

}

.glass-search button{

width:52px;

height:52px;

border:none;

background:#f59e0b;

color:white;

font-size:18px;

cursor:pointer;

}

/* HERO FIX */

.hero{

margin-top:-120px;

padding-top:240px;

}

/* BODY FIX */

body{

padding-top:90px;

}

/* MOBILE */

@media(max-width:991px){

.glass-navbar{

padding:18px 20px;

}

.nav-container{

flex-direction:column;

gap:20px;

}

.nav-menu{

flex-wrap:wrap;

justify-content:center;

gap:20px;

}

.glass-search{

width:100%;

}

.glass-search input{

width:100%;

}

.logo{

font-size:30px;

}

}

/* HERO SECTION */

.hero{

position:relative;
margin-top:-110px;
padding-top:220px;

min-height:850px;

display:flex;

align-items:center;

overflow:hidden;

background:url('../images/hero.png');

background-size:cover;

background-position:center;

}

/* DARK OVERLAY */

.hero::before{

content:'';

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(15,23,42,0.65);

backdrop-filter:blur(1px);

z-index:1;

}

/* CONTENT */

.hero-content{

position:relative;

z-index:2;

max-width:750px;

color:white;

padding:120px 0;

}

.hero-subtitle{

font-size:16px;

font-weight:bold;

letter-spacing:3px;

text-transform:uppercase;

color:blue;

margin-bottom:25px;

}

.hero-title{

font-size:78px;

font-weight:900;

line-height:1.05;

margin-bottom:30px;

}

.hero-title span{

color:#2563eb;

font-style:italic;

}

.hero-text{

font-size:22px;

line-height:1.8;

color:#e2e8f0;

margin-bottom:40px;

max-width:650px;

}

/* BUTTONS */

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-btn{

height:60px;

padding:0 35px;

border-radius:16px;

display:inline-flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:18px;

font-weight:bold;

transition:0.3s;

}

.hero-btn-primary{

background:#2563eb;

color:white;

}

.hero-btn-primary:hover{

background:white;

color:#0f172a;

}

.hero-btn-outline{

border:2px solid white;

color:white;

}

.hero-btn-outline:hover{

background:white;

color:#0f172a;

}

/* MOBILE */

@media(max-width:991px){

.hero{
min-height:700px;
}

.hero-title{
font-size:58px;
}

.hero-text{
font-size:20px;
}

}

@media(max-width:576px){

.hero{

min-height:650px;

text-align:center;

}

.hero-content{
padding:80px 0;
}

.hero-title{
font-size:42px;
}

.hero-text{
font-size:17px;
}

.hero-buttons{
justify-content:center;
}

.hero-btn{

height:60px;

padding:0 35px;

border-radius:16px;

display:inline-flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:18px;

font-weight:bold;

transition:0.3s;

}

.hero-btn-primary{

background:#2563eb;

color:white;

}

.hero-btn-primary:hover{

background:white;

color:#0f172a;

}

.hero-btn-outline{

border:2px solid white;

color:white;

}

.hero-btn-outline:hover{

background:white;

color:#0f172a;

}



/* SECTION */

.section-title{
font-size:40px;
font-weight:bold;
margin-bottom:40px;
text-align:center;
}

/* CARD */

.plan-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.plan-card:hover{
transform:translateY(-8px);
}

.plan-card img{
width:100%;
height:250px;
object-fit:cover;
}

.plan-content{
padding:25px;
}

.plan-title{
font-size:24px;
font-weight:bold;
margin-bottom:10px;
}

.price{
font-size:28px;
font-weight:bold;
color:#f59e0b;
margin-bottom:15px;
}

.view-btn{
background:#0f172a;
color:white;
padding:12px 25px;
border-radius:10px;
text-decoration:none;
display:inline-block;
}

.view-btn:hover{
background:#f59e0b;
}

/* FOOTER */

.footer{
background:#0f172a;
color:white;
padding:70px 0 20px;
margin-top:80px;
}

.footer-title{
font-size:24px;
font-weight:bold;
margin-bottom:20px;
}

.footer p{
color:#cbd5e1;
line-height:28px;
}

.footer-links a{
display:block;
color:#cbd5e1;
text-decoration:none;
margin-bottom:10px;
}

.footer-links a:hover{
color:blue;
}

.social-icons a{
width:45px;
height:45px;
background:#1e293b;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:10px;
color:white;
text-decoration:none;
}

.social-icons a:hover{
background:blue;
}

.copyright{
border-top:1px solid #334155;
padding-top:20px;
margin-top:40px;
text-align:center;
color:#94a3b8;
}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.search-input{
width:100%;
}

}
/* PREMIUM SEARCH BAR */

.search-section{
margin-top:-60px;
position:relative;
z-index:10;
}

.search-box{

background:white;

padding:30px;

border-radius:25px;

display:flex;

gap:20px;

align-items:end;

box-shadow:0 10px 40px rgba(0,0,0,0.08);

flex-wrap:wrap;

}

.search-item{
flex:1;
min-width:180px;
}

.search-item label{

display:block;

font-size:12px;

font-weight:bold;

letter-spacing:1px;

color:#94a3b8;

margin-bottom:10px;

}

.search-item select{

width:100%;

height:60px;

border:none;

background:#f8fafc;

border-radius:15px;

padding:0 20px;

font-size:18px;

outline:none;

}

.search-btn-modern{

background:#2563eb;

color:white;

border:none;

height:60px;

padding:0 40px;

border-radius:16px;

font-size:18px;

font-weight:bold;

transition:0.3s;

min-width:220px;

}

.search-btn-modern:hover{

background:#0f172a;

transform:translateY(-2px);

}

@media(max-width:768px){

.search-box{
padding:20px;
}

.search-btn-modern{
width:100%;
}

}

/* CONTACT PAGE */

.contact-section{
padding:100px 0;
background:white;
}

.small-title{

color:#2563eb;

font-size:14px;

font-weight:bold;

letter-spacing:2px;

margin-bottom:20px;

}

.big-title{

font-size:110px;

font-weight:900;

line-height:0.9;

color:#0f172a;

margin-bottom:30px;

}

.big-title span{
color:#2563eb;
font-style:italic;
}

.contact-text{

font-size:22px;

line-height:1.8;

color:#64748b;

margin-bottom:50px;

}

.contact-info{
margin-top:40px;
}

.info-box{

display:flex;

align-items:center;

margin-bottom:30px;

}

.icon-box{

width:70px;

height:70px;

background:white;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

margin-right:20px;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

color:#0f172a;

}

.info-box h6{

font-size:13px;

font-weight:bold;

letter-spacing:1px;

color:#94a3b8;

margin-bottom:8px;

}

.info-box p{

font-size:28px;

font-weight:700;

color:#0f172a;

margin:0;

}

.social-links{
margin-top:60px;
}

.social-links a{

width:60px;

height:60px;

background:white;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:18px;

margin-right:15px;

color:#64748b;

font-size:22px;

text-decoration:none;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

transition:0.3s;

}

.social-links a:hover{

background:#2563eb;

color:white;

}

/* FORM */

.contact-form-box{

background:white;

padding:50px;

border-radius:40px;

box-shadow:0 10px 40px rgba(0,0,0,0.05);

}

.topic-buttons{
margin-bottom:40px;
}

.topic-btn{

background:#f1f5f9;

border:none;

padding:14px 25px;

border-radius:30px;

margin-right:10px;

margin-bottom:10px;

font-weight:bold;

color:#64748b;

transition:0.3s;

}

.topic-btn.active,
.topic-btn:hover{

background:#2563eb;

color:white;

}

.contact-form-box label{

display:block;

font-size:13px;

font-weight:bold;

letter-spacing:1px;

margin-bottom:10px;

color:#94a3b8;

}

.contact-form-box .form-control{

height:60px;

border:none;

background:#f8fafc;

border-radius:18px;

padding:0 20px;

font-size:18px;

}

.contact-form-box textarea.form-control{

height:180px;

padding-top:20px;

resize:none;

}

.send-btn{

width:100%;

height:80px;

background:#2563eb;

border:none;

border-radius:25px;

font-size:26px;

font-weight:bold;

color:white;

transition:0.3s;

margin-top:20px;

}

.send-btn i{
margin-right:15px;
}

.send-btn:hover{

background:#0f172a;

}

@media(max-width:768px){

.big-title{
font-size:65px;
}

.contact-text{
font-size:18px;
}

.info-box p{
font-size:20px;
}

.contact-form-box{
padding:30px;
}

.send-btn{
font-size:20px;
height:70px;
}

}
.plan-category{

display:inline-block;

background:#2563eb;

color:white;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:bold;

margin-bottom:15px;


}

.container{
max-width:1300px;
}

/* PAGINATION */

.pagination-box{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

margin-top:60px;

flex-wrap:wrap;

}

.page-number,
.page-btn{

width:50px;

height:50px;

background:white;

border-radius:12px;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-weight:bold;

color:#0f172a;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

transition:0.3s;

}

.page-number:hover,
.page-btn:hover{

background:#2563eb;

color:white;

}

.active-page{

background:#0f172a;

color:white;

}

/* CATEGORY SECTION */

.category-section{

padding:90px 0;

background:#F1F5F9;

}

.section-header h2{

font-size:42px;

font-weight:bold;

margin-bottom:50px;

color:#0f172a;

}

.category-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

}

.category-card{

background:rgb(255, 255, 255);

padding:20px;

border-radius:100px;

text-align:center;

text-decoration:none;

transition:0.3s;

box-shadow:0 5px 20px rgba(0,0,0,0.05);

}

.category-card:hover{

transform:translateY(-8px);

background:blue;

}

.category-card:hover h5,
.category-card:hover i{

color:white;

}

.category-icon{

margin-bottom:18px;

}

.category-icon i{

font-size:35px;

color:#0f172a;

transition:0.3s;

}

.category-card h5{

font-size:18px;

font-weight:600;

color:#0f172a;

margin:0;

transition:0.3s;

}

/* MOBILE */

@media(max-width:991px){

.category-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:576px){

.category-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.category-card{

padding:25px 15px;

}

.section-header h2{

font-size:32px;

}

}

/* CATEGORY PAGE */

.category-page{

padding:80px 0;

background:#E5E7EB;

min-height:100vh;

}

.category-header{

text-align:center;

margin-bottom:60px;

}

.category-header h1{

font-size:52px;

font-weight:bold;

margin-bottom:15px;

color:#0f172a;

}

.category-header p{

font-size:20px;

color:#64748b;

}

/* PRODUCT GALLERY */

.gallery-wrapper{
margin-bottom:40px;
}

.main-slider{

background:white;

border-radius:25px;

overflow:hidden;

margin-bottom:20px;

}

.main-slider img{

width:100%;

height:650px;

object-fit:cover;

display:block;

}

.thumbnail-row{

display:flex;

gap:15px;

overflow-x:auto;

padding-bottom:10px;

}

.thumb{

width:130px;

height:100px;

object-fit:cover;

border-radius:15px;

cursor:pointer;

border:4px solid transparent;

transition:0.3s;

flex-shrink:0;

}

.thumb:hover{

transform:scale(1.05);

}

.active-thumb{

border-color:#2563eb;

}

/* MOBILE */

@media(max-width:768px){

.main-slider img{

height:350px;

}

.thumb{

width:90px;

height:70px;

}

}
/* MOBILE */

@media(max-width:768px){

.main-slider img{

height:350px;

}

.thumb{

width:90px;

height:70px;

}

}

/* TRUST SECTION */

.trust-section{

padding:70px 0;

background:#E5E7EB;


}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.trust-card{

background:white;

padding:30px;

border-radius:18px;

display:flex;

align-items:center;

gap:20px;

box-shadow:0 5px 20px rgba(0,0,0,0.05);

transition:0.3s;

}

.trust-card:hover{

transform:translateY(-5px);

}

.trust-icon{

width:65px;

height:65px;

background:#f1f5f9;

border-radius:16px;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

}

.trust-icon i{

font-size:28px;

color:#0f172a;

}

.trust-card h4{

font-size:20px;

font-weight:bold;

margin-bottom:6px;

color:#0f172a;

}

.trust-card p{

margin:0;

font-size:14px;

color:#64748b;

text-transform:uppercase;

letter-spacing:1px;

}

/* TABLET */

@media(max-width:991px){

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* MOBILE */

@media(max-width:576px){

.trust-grid{

grid-template-columns:1fr;

}

.trust-card{

padding:25px;

}

}

/* PREMIUM PLAN CARD */

.premium-card{

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,0.08);

transition:0.4s;

height:100%;

display:flex;

flex-direction:column;

}

.premium-card:hover{

transform:translateY(-10px);

}

/* IMAGE */

.premium-image{

position:relative;

height:320px;

overflow:hidden;

}

.premium-image img{

width:100%;

height:100%;

object-fit:cover;

transition:0.5s;

display:block;

}

.premium-card:hover img{

transform:scale(1.05);

}

/* CATEGORY */

.premium-badge{

position:absolute;

top:20px;

left:20px;

background:white;

padding:10px 18px;

border-radius:30px;

font-size:12px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

z-index:2;

}

/* DOWNLOAD */

.download-icon{

position:absolute;

top:20px;

right:20px;

width:50px;

height:50px;

background:rgba(0,0,0,0.45);

backdrop-filter:blur(10px);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:18px;

z-index:2;

}

/* CONTENT */

.premium-content{

padding:30px;

display:flex;

flex-direction:column;

flex:1;

}

.premium-title{

font-size:36px;

font-weight:800;

line-height:1.2;

margin-bottom:15px;

color:#0f172a;

}

.premium-size{

font-size:17px;

color:#64748b;

padding-bottom:25px;

margin-bottom:25px;

border-bottom:1px solid #e2e8f0;

}

/* FEATURES */

.premium-features{

display:flex;

justify-content:space-between;

margin-bottom:35px;

}

.premium-features div{

display:flex;

align-items:center;

gap:8px;

font-size:18px;

font-weight:600;

color:#334155;

}

.premium-features i{

color:#2563eb;

}

/* BOTTOM */

.premium-bottom{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:auto;

}

.starting-text{

font-size:12px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

color:#94a3b8;

margin-bottom:8px;

}

.premium-price{

font-size:48px;

font-weight:900;

margin:0;

color:#0f172a;

}

/* BUTTON */

.premium-btn{

width:65px;

height:65px;

border-radius:50%;

background:#2563eb;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:22px;

text-decoration:none;

transition:0.3s;

flex-shrink:0;

}

.premium-btn:hover{

background:#0f172a;

color:white;

transform:rotate(-45deg);

}

/* MOBILE */

@media(max-width:768px){

.premium-image{

height:260px;

}

.premium-title{

font-size:28px;

}

.premium-price{

font-size:38px;

}

}
/* FIX CARD WIDTH */

.row.g-4{

margin-left:0;
margin-right:0;

}

.premium-card{

width:100%;

max-width:100%;

}

/* IMAGE FIX */

.premium-image{

height:340px;

}

/* DESKTOP */

@media(min-width:1200px){

.col-lg-4{

width:33.3333%;

}

}

/* TABLET */

@media(max-width:991px){

.premium-image{

height:300px;

}

}

/* MOBILE */

@media(max-width:576px){

.premium-image{

height:250px;

}

}



/* SINGLE PLAN */

.single-title{

font-size:48px;

font-weight:800;

margin-bottom:25px;

}

.plan-meta{

display:flex;

gap:30px;

flex-wrap:wrap;

margin-bottom:40px;

font-size:18px;

font-weight:600;

}

.plan-meta i{

color:#2563eb;

margin-right:8px;

}

.description-box,
.extra-details,
.purchase-box{

background:#fff;

padding:35px;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,0.06);

margin-bottom:30px;

}

.purchase-box{

position:sticky;

top:120px;

}

.pdf-option{

display:block;

padding:18px;

border:1px solid #e2e8f0;

border-radius:18px;

margin-bottom:15px;

cursor:pointer;

transition:0.3s;

}

.pdf-option:hover{

border-color:#2563eb;

}

.pdf-price{

font-weight:800;

font-size:20px;

}

.buy-btn{

width:100%;

height:60px;

border:none;

border-radius:18px;

background:#0f172a;

color:white;

font-size:18px;

font-weight:700;

margin-top:20px;

}

.buy-btn:hover{

background:#2563eb;

}

/* RELATED PRODUCTS */

.related-products{

background:#f8fafc;

margin-top:60px;

}

.related-products h2{

font-size:42px;

font-weight:800;

text-align:center;

margin-bottom:50px;

}


.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

z-index:9999;

border-radius:50%;

box-shadow:0 6px 20px rgba(0,0,0,0.25);

transition:0.3s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

.whatsapp-float img{

width:100%;

height:100%;

border-radius:50%;

}

@keyframes whatsappPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}




.premium-badge{
    position:absolute;
    top:15px;
    left:15px;
    padding:6px 14px;
    border-radius:20px;
    color:#fff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

/* 2BHK */
.badge-2bhk{
    background:#2563eb;
}

/* 3BHK */
.badge-3bhk{
    background:#16a34a;
}

/* Duplex */
.badge-duplex{
    background:#9333ea;
}

/* Modern */
.badge-modern{
    background:#ea580c;
}

/* Luxury */
.badge-luxury{
    background:#ca8a04;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:9999;
    text-decoration:none;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    padding:10px 0;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    display:none;
    z-index:999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:10px 15px;
    color:#333;
    text-decoration:none;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu{
    display:none;
    list-style:none;
    padding-left:15px;
}

.dropdown.active .dropdown-menu{
    display:block;
}

.dropdown-menu li a{
    display:block;
    padding:10px 0;
}