
/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

/*==============================
    RESET
==============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{

    font-family:'Rubik',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

    line-height:1.5;

    -webkit-font-smoothing:antialiased;


}

.container{

width:92%;
max-width:1400px;
margin:auto;

}

.header{

height:72px;
background:#6528d6;
position:sticky;
top:0;
z-index:999;

}

.header .container{

height:72px;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;

}

.logo img{

height:34px;

}

.navbar{

margin-left:10px;

}

.navbar ul{

display:flex;
list-style:none;
gap:25px;

}

.navbar a{

color:#fff;
text-decoration:none;
font-weight:500;

}

.search-box{

flex:1;
position:relative;
max-width:550px;

}

.search-box input{

width:100%;
height:45px;
border:none;
border-radius:8px;
padding-left:42px;
font-size:15px;

}

.search-box i{

position:absolute;
left:15px;
top:15px;
color:#666;

}

.header-right{

display:flex;
align-items:center;
gap:15px;

}

.download-btn{

color:white;
text-decoration:none;

}

.property-btn{

background:white;
color:#6528d6;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:600;

}

.property-btn span{

background:red;
color:white;
font-size:10px;
padding:2px 6px;
border-radius:3px;
margin-left:5px;

}

.wishlist,
.profile,
.menu-btn{

width:42px;
height:42px;
border:none;
border-radius:50%;
cursor:pointer;
font-size:17px;

}

.wishlist{

background:transparent;
color:white;

}

.profile{

background:white;
color:#6528d6;

}

.menu-btn{

display:none;
background:white;
color:#6528d6;

}

.mobile-menu{

position:fixed;
top:0;
right:-320px;
width:300px;
height:100%;
background:white;
transition:.35s;
z-index:1001;
padding:25px;

}

.mobile-menu.active{

right:0;

}

.mobile-top{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;

}

.close-menu{

border:none;
background:none;
font-size:22px;
cursor:pointer;

}

.mobile-menu ul{

list-style:none;

}

.mobile-menu li{

border-bottom:1px solid #eee;

}

.mobile-menu a{

display:block;
padding:18px 0;
text-decoration:none;
color:#333;

}

.overlay{

position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.4);
opacity:0;
visibility:hidden;
transition:.35s;
z-index:1000;

}

.overlay.active{

opacity:1;
visibility:visible;

}
.project-section{

padding:35px 0;

}

.breadcrumb{

display:flex;
gap:10px;
font-size:14px;
margin-bottom:25px;
flex-wrap:wrap;

}

.breadcrumb a{

text-decoration:none;
color:#666;

}

.breadcrumb strong{

color:#6528d6;

}

.project-top{

display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:30px;
gap:30px;

}

.project-left{

flex:1;

}

.project-left h1{

font-size:42px;
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;

}

.rera{

background:#ecfff1;
color:#17864b;
padding:6px 12px;
border-radius:6px;
font-size:14px;

}

.project-left p{

margin-bottom:12px;
color:#555;

}

.project-left a{

color:#6528d6;
text-decoration:none;
font-weight:600;

}

.location{

color:#777;

}

.project-right{

text-align:right;

}

.project-right h2{

font-size:38px;
margin-bottom:10px;

}

.project-right p{

color:#666;

}

.emi{

margin:18px 0;
color:#6528d6;
font-weight:600;

}

.project-right button{

background:#6528d6;
color:white;
padding:15px 30px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;

}

.gallery{

display:grid;
grid-template-columns:2fr 1fr;
gap:18px;

}

.main-image{

position:relative;

}

.main-image img{

width:100%;
height:620px;
object-fit:cover;
border-radius:12px;

}

.gallery-actions{

position:absolute;
right:20px;
top:20px;
display:flex;
gap:12px;

}

.gallery-actions button{

background:white;
border:none;
padding:12px 18px;
border-radius:8px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.side-gallery{

display:flex;
flex-direction:column;
gap:18px;

}

.small-image{

position:relative;

}

.small-image img{

width:100%;
height:301px;
object-fit:cover;
border-radius:12px;

}

.play{

position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:75px;
height:75px;
background:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;

}

.more{

position:absolute;
inset:0;
background:rgba(0,0,0,.45);
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:34px;
font-weight:bold;
border-radius:12px;

}
/*=========================
    SECTION TITLE
=========================*/

.section-title{

font-size:32px;
margin-bottom:30px;
color:#222;

}

/*=========================
    OVERVIEW
=========================*/

.overview-section{

padding:60px 0;

}

.overview-grid{

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

}

.overview-card{

background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;

}

.overview-card:hover{

transform:translateY(-5px);

}

.overview-card i{

font-size:32px;
color:#6528d6;
margin-bottom:18px;

}

.overview-card h4{

margin-bottom:10px;
font-size:18px;

}

.overview-card p{

color:#666;
line-height:1.6;

}

/*=========================
      AMENITIES
=========================*/

.amenities-section{

padding:60px 0;
background:#fff;

}

.amenities-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.amenity{

background:#f8f8fc;
padding:25px;
text-align:center;
border-radius:12px;
transition:.3s;

}

.amenity:hover{

background:#6528d6;
color:white;

}

.amenity:hover i{

color:white;

}

.amenity i{

font-size:32px;
margin-bottom:15px;
color:#6528d6;

}

.amenity span{

display:block;
font-weight:600;

}
/*=========================================
        FLOOR PLAN SECTION
=========================================*/

.floor-section{
    padding:70px 0;
    background:#fff;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.section-header h2{
    font-size:34px;
    color:#222;
    margin-bottom:8px;
}

.section-header p{
    color:#777;
    font-size:15px;
}

.download-brochure{
    background:#6528d6;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.download-brochure:hover{
    background:#4f1fb5;
}

/*=========================================
            TABS
=========================================*/

.floor-tabs{
    display:flex;
    gap:15px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.tab-btn{
    padding:14px 30px;
    border:none;
    border-radius:8px;
    background:#ececf7;
    color:#444;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover{
    background:#d8c8ff;
}

.tab-btn.active{
    background:#6528d6;
    color:#fff;
}

/*=========================================
        TAB CONTENT
=========================================*/

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/*=========================================
            PLAN CARD
=========================================*/

.plan-card{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;
    background:#fff;
    border-radius:14px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    align-items:center;
}

.plan-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

.plan-info h3{
    font-size:28px;
    margin-bottom:20px;
    color:#222;
}

.plan-info ul{
    list-style:none;
    margin-bottom:30px;
}

.plan-info li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:16px;
}

.plan-info strong{
    color:#222;
}

/*=========================================
            BUTTONS
=========================================*/

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

.btn-primary{
    background:#6528d6;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    transition:.3s;
}

.btn-primary:hover{
    background:#4d1fb0;
}

.btn-outline{
    border:2px solid #6528d6;
    color:#6528d6;
    text-decoration:none;
    padding:12px 26px;
    border-radius:8px;
    transition:.3s;
}

.btn-outline:hover{
    background:#6528d6;
    color:#fff;
}

/*=========================================
        UNIT TYPES
=========================================*/

.unit-section{
    padding:70px 0;
    background:#f7f8fc;
}

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

.unit-card{
    background:#fff;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.3s;
}

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

.unit-card h3{
    font-size:28px;
    color:#222;
    margin-bottom:15px;
}

.unit-card span{
    display:block;
    color:#777;
    margin-bottom:15px;
}

.unit-card strong{
    display:block;
    color:#6528d6;
    font-size:26px;
    margin-bottom:25px;
}

.unit-card button{
    background:#6528d6;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.unit-card button:hover{
    background:#4d1fb0;
}
/*=========================================
        LOCATION SECTION
=========================================*/

.location-section{
    padding:80px 0;
    background:#ffffff;
}

.location-header{
    margin-bottom:40px;
}

.location-header h2{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.location-header p{
    color:#777;
    font-size:16px;
    line-height:1.6;
}

/*=========================================
        LAYOUT
=========================================*/

.location-wrapper{
    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:35px;
    align-items:start;
}

/*=========================================
        MAP
=========================================*/

.map-column{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.map-box{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:520px;
    border:0;
    display:block;
}

/*=========================================
        ADDRESS BOX
=========================================*/

.address-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.address-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#6528d6;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    font-size:22px;
}

.address-box h4{
    font-size:20px;
    color:#222;
    margin-bottom:8px;
}

.address-box p{
    color:#666;
    line-height:1.8;
}

/*=========================================
        NEARBY COLUMN
=========================================*/

.nearby-column{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.nearby-title{
    margin-bottom:25px;
}

.nearby-title h3{
    font-size:28px;
    color:#222;
}

/*=========================================
        GRID
=========================================*/

.nearby-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

/*=========================================
        CARD
=========================================*/

.near-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    background:#f8f9fc;
    border-radius:12px;
    padding:18px;
    transition:.3s;
    border:1px solid transparent;
}

.near-card:hover{
    background:#ffffff;
    border-color:#6528d6;
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/*=========================================
        ICON
=========================================*/

.near-icon{
    width:55px;
    height:55px;
    background:#ede6ff;
    color:#6528d6;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    flex-shrink:0;
    transition:.3s;
}

.near-card:hover .near-icon{
    background:#6528d6;
    color:#fff;
}

/*=========================================
        TEXT
=========================================*/

.near-info{
    flex:1;
}

.near-info h4{
    font-size:17px;
    color:#222;
    margin-bottom:6px;
}

.near-info span{
    display:inline-block;
    font-size:14px;
    color:#666;
    background:#eef2ff;
    padding:5px 12px;
    border-radius:20px;
    font-weight:600;
}

.near-card:hover .near-info span{
    background:#6528d6;
    color:#fff;
}

/*=========================================
        SMOOTH EFFECTS
=========================================*/

.map-box,
.address-box,
.nearby-column,
.near-card{
    transition:all .35s ease;
}
/*=============================
    SCROLL EFFECT
=============================*/

.map-box,
.address-box,
.near-card{

    opacity:0;
    transform:translateY(40px);

}

.show{

    opacity:1 !important;
    transform:translateY(0) !important;

}

.map-box,
.address-box,
.near-card{

    transition:
    opacity .6s ease,
    transform .6s ease;

}
/*=========================================
      CONTACT SECTION
=========================================*/

.contact-section{
    padding:80px 0;
    background:#f7f8fc;
}

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

.contact-content{
    padding-right:20px;
}

.contact-content .section-title{
    font-size:38px;
    color:#222;
    margin-bottom:18px;
}

.contact-desc{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

/*=========================================
        FEATURES
=========================================*/

.contact-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 22px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-4px);
}

.feature-item i{
    color:#6528d6;
    font-size:22px;
}

.feature-item span{
    font-size:16px;
    color:#333;
    font-weight:600;
}

/*=========================================
        STICKY SIDEBAR
=========================================*/

.contact-sidebar{
    position:relative;
}

.sticky-box{
    position:sticky;
    top:90px;
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    overflow:hidden;
}

/*=========================================
        DEVELOPER
=========================================*/

.developer-box{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:25px;
}

.developer-box img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.developer-box h4{
    font-size:20px;
    color:#222;
}

.developer-box span{
    font-size:14px;
    color:#777;
}

/*=========================================
          PRICE
=========================================*/

.price-box{
    background:#f6f3ff;
    border-radius:12px;
    padding:20px;
    margin-bottom:25px;
}

.price-box h3{
    color:#6528d6;
    font-size:30px;
    margin-bottom:8px;
}

.price-box p{
    color:#666;
    font-size:15px;
}
/*=========================================
        ENQUIRY FORM
=========================================*/

.enquiry-form{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:25px;
}

.enquiry-form input,
.enquiry-form textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    font-size:15px;
    font-family:inherit;
    background:#fff;
    transition:all .3s ease;
    resize:none;
    outline:none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder{
    color:#999;
}

.enquiry-form input:hover,
.enquiry-form textarea:hover{
    border-color:#6528d6;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus{
    border-color:#6528d6;
    box-shadow:0 0 0 4px rgba(101,40,214,.10);
}

/*=========================================
      REQUEST CALLBACK BUTTON
=========================================*/

.enquiry-form button{
    width:100%;
    height:54px;
    background:#6528d6;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.enquiry-form button:hover{
    background:#4d1fb0;
    transform:translateY(-2px);
}

/*=========================================
      SIDEBAR BUTTONS
=========================================*/

.sidebar-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:25px;
}

.btn-whatsapp,
.btn-call{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:50px;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1fae56;
}

.btn-call{
    background:#6528d6;
    color:#fff;
}

.btn-call:hover{
    background:#4d1fb0;
}

/*=========================================
      PROPERTY ACTIONS
=========================================*/

.property-actions{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.property-actions button{
    height:48px;
    background:#f8f8fc;
    border:1px solid #e8e8e8;
    border-radius:10px;
    cursor:pointer;
    font-size:14px;
    color:#444;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.property-actions button i{
    color:#6528d6;
}

.property-actions button:hover{
    background:#6528d6;
    color:#fff;
    border-color:#6528d6;
}

.property-actions button:hover i{
    color:#fff;
}

/*=========================================
      SIDEBAR DIVIDER
=========================================*/

.sticky-box hr{
    border:none;
    border-top:1px solid #ececec;
    margin:22px 0;
}

/*=========================================
      OPTIONAL TRUST BADGE
=========================================*/

.trust-badge{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    padding:14px;
    background:#f5fff7;
    border-radius:10px;
}

.trust-badge i{
    color:#1e9e4a;
    font-size:20px;
}

.trust-badge span{
    font-size:14px;
    color:#444;
}
/*=========================================
        MOBILE STICKY CTA
=========================================*/

.mobile-cta{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#fff;
    box-shadow:0 -5px 20px rgba(0,0,0,.12);
    display:none;
    grid-template-columns:1fr 1fr 1.5fr;
    z-index:999;
}

.mobile-cta a,
.mobile-cta button{

    height:60px;
    border:none;
    outline:none;
    cursor:pointer;
    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    font-size:15px;
    font-weight:600;

}

.cta-call{

    background:#6528d6;
    color:#fff;

}

.cta-whatsapp{

    background:#25D366;
    color:#fff;

}

.cta-enquiry{

    background:#ff6b00;
    color:#fff;

}

.mobile-cta a:hover,
.mobile-cta button:hover{

    opacity:.95;

}

/*=========================================
            POPUP OVERLAY
=========================================*/

.popup-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:1500;

}

.popup-overlay.active{

    opacity:1;
    visibility:visible;

}

/*=========================================
            POPUP FORM
=========================================*/

.popup-form{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%) scale(.8);

    width:92%;
    max-width:520px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    border-radius:20px;

    padding:35px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:1600;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.popup-form.active{

    opacity:1;
    visibility:visible;

    transform:translate(-50%,-50%) scale(1);

}

.popup-close{

    position:absolute;

    right:18px;
    top:18px;

    width:38px;
    height:38px;

    border:none;

    background:#f2f2f2;

    border-radius:50%;

    cursor:pointer;

    transition:.3s;

}

.popup-close:hover{

    background:#6528d6;
    color:#fff;

}

.popup-form h3{

    font-size:30px;
    color:#222;

    margin-bottom:12px;

}

.popup-form p{

    color:#666;
    margin-bottom:25px;
    line-height:1.7;

}

.popup-form form{

    display:flex;
    flex-direction:column;
    gap:16px;

}

.popup-form input,
.popup-form textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:15px 18px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.popup-form textarea{

    resize:none;

}

.popup-form input:focus,
.popup-form textarea:focus{

    border-color:#6528d6;

    box-shadow:0 0 0 4px rgba(101,40,214,.10);

}

.popup-form button[type="submit"]{

    height:54px;

    background:#6528d6;

    color:#fff;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.popup-form button[type="submit"]:hover{

    background:#4d1fb0;

}

/*=========================================
        GLASS EFFECT
=========================================*/

.sticky-box{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

}

/*=========================================
        SIMPLE FADE ANIMATION
=========================================*/

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:.7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/*=========================================
        DESCRIPTION
=========================================*/

.description-section{

    padding:80px 0;
    background:#fff;

}

.description-wrapper{

    max-width:950px;

}

.description-text{

    overflow:hidden;

    transition:.4s;

    line-height:2;

    color:#555;

    font-size:16px;

}

.description-text.collapsed{

    max-height:180px;

}

.description-text.expanded{

    max-height:1000px;

}

.description-text p{

    margin-bottom:20px;

}

.read-more-btn{

    margin-top:20px;

    background:#6528d6;

    color:#fff;

    border:none;

    padding:14px 28px;

    border-radius:8px;

    cursor:pointer;

    font-size:15px;

}

/*=========================================
        WHY BUY
=========================================*/

.why-buy-section{

    padding:80px 0;

    background:#f8f9fc;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    font-size:34px;

    color:#6528d6;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    color:#222;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/*=====================================
      SPECIFICATIONS
=====================================*/

.specification-section{

    padding:90px 0;

    background:#fff;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-size:40px;

    color:#222;

    margin-bottom:10px;

}

.section-heading p{

    color:#777;

}

.spec-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.spec-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.spec-card:hover{

    transform:translateY(-8px);

}

.spec-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#f3edff;

    color:#6528d6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.spec-card:hover .spec-icon{

    background:#6528d6;

    color:#fff;

}

.spec-content h3{

    margin-bottom:18px;

    color:#222;

}

.spec-content ul{

    list-style:none;

}

.spec-content li{

    padding:10px 0;

    border-bottom:1px solid #eee;

    color:#666;

}

.spec-content li:last-child{

    border:none;

}

.download-specs{

    text-align:center;

    margin-top:60px;

}

.download-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    background:#6528d6;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.download-btn:hover{

    background:#4d1fb0;

}
/*=====================================
        FAQ SECTION
=====================================*/

.faq-section{

    padding:90px 0;

    background:#f8f9fc;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:14px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:#222;

    transition:.3s;

}

.faq-question:hover{

    color:#6528d6;

}

.faq-question i{

    color:#6528d6;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}
/*=====================================
    SIMILAR PROPERTIES
=====================================*/

.similar-properties{

    padding:90px 0;

    background:#fff;

}

.property-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.property-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.property-card:hover{

    transform:translateY(-10px);

}

.property-image{

    position:relative;

}

.property-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

}

.property-tag{

    position:absolute;

    top:15px;

    left:15px;

    background:#6528d6;

    color:#fff;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

}

.wishlist-btn{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:18px;

    color:#6528d6;

}

.property-content{

    padding:25px;

}

.property-content h3{

    margin-bottom:10px;

}

.location{

    color:#777;

    margin-bottom:15px;

}

.property-price{

    color:#6528d6;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.property-features{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:22px;

}

.property-features span{

    background:#f4f2ff;

    color:#6528d6;

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

}

.property-buttons{

    display:flex;

    gap:12px;

}

.btn-view,
.btn-contact{

    flex:1;

    text-align:center;

    padding:13px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

}

.btn-view{

    background:#6528d6;

    color:#fff;

}

.btn-contact{

    border:2px solid #6528d6;

    color:#6528d6;

}
/*=====================================
      CUSTOMER REVIEWS
=====================================*/

.reviews-section{
    padding:90px 0;
    background:#f8f9fc;
}

.reviews-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    margin-bottom:50px;
}

/* Rating Summary */

.rating-summary{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.overall-rating{
    text-align:center;
    margin-bottom:30px;
}

.overall-rating h3{
    font-size:60px;
    color:#6528d6;
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin:10px 0;
}

.rating-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:14px;
}

.rating-row span{
    width:60px;
    font-size:14px;
}

.bar{
    flex:1;
    height:10px;
    background:#eee;
    border-radius:20px;
    overflow:hidden;
}

.bar div{
    height:100%;
    background:#6528d6;
}

/* Review Cards */

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

.review-card{
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-6px);
}

.review-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.review-header img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.review-header h4{
    margin-bottom:4px;
}

.review-header span{
    color:#777;
    font-size:14px;
}

.review-stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:15px;
}

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

/* Review Form */

.review-form{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

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

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

.review-form input,
.review-form select,
.review-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus{
    border-color:#6528d6;
}

.review-form button{
    height:52px;
    border:none;
    background:#6528d6;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.review-form button:hover{
    background:#4d1fb0;
}
/*=====================================
        PREMIUM FOOTER
=====================================*/

.footer{

    background:#111827;

    color:#fff;

    padding-top:80px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1.2fr 1.4fr;

    gap:45px;

    padding-bottom:50px;

}

.footer-logo{

    height:42px;

    margin-bottom:20px;

}

.footer-column p{

    color:#c7c7c7;

    line-height:1.8;

}

.footer-column h3{

    margin-bottom:25px;

    font-size:22px;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:15px;

    color:#d9d9d9;

}

.footer-column li i{

    color:#8b5cf6;

    width:25px;

}

.footer-column a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#8b5cf6;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1f2937;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    background:#6528d6;

}

.newsletter{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-top:20px;

}

.newsletter input{

    height:50px;

    border:none;

    border-radius:8px;

    padding:0 15px;

    outline:none;

}

.newsletter button{

    height:50px;

    background:#6528d6;

    color:#fff;

    border:none;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.newsletter button:hover{

    background:#4d1fb0;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#bbb;

}

/*=====================================
        BACK TO TOP
=====================================*/

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#6528d6;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.3s;

}

.back-top.show{

    display:flex;

    align-items:center;

    justify-content:center;

}

.back-top:hover{

    background:#4d1fb0;

}
/*========================
ABOUT PAGE
=========================*/

.about-banner{
    background:linear-gradient(135deg,#6528d6,#8b5cf6);
    color:#fff;
}

.banner-content{
    max-width:800px;
    margin:auto;
}

.banner-content h1{
    font-size:48px;
    margin-bottom:20px;
}

.banner-content p{
    font-size:18px;
    line-height:1.8;
}

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

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content h2{
    font-size:38px;
    margin-bottom:20px;
}

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

.about-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.point{
    display:flex;
    gap:12px;
    align-items:center;
    background:#f8f8fc;
    padding:18px;
    border-radius:12px;
}

.point i{
    color:#6528d6;
    font-size:22px;
}

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

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

.mission-box i{
    font-size:45px;
    color:#6528d6;
    margin-bottom:20px;
}

.mission-box h3{
    margin-bottom:15px;
}

.mission-box p{
    color:#666;
    line-height:1.8;
}

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

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

.stat-card h2{
    font-size:50px;
    color:#6528d6;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
    font-weight:500;
}

/* Responsive */

@media(max-width:992px){

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

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

.banner-content h1{
font-size:36px;
}

}
