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

body{
    font-family:'Lexend',sans-serif;
    background:#fff;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    background:#fff;
    padding:22px 0;

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

}

.navbar-brand img{

    height:58px;

}

.navbar-nav{

    margin:auto;

}

.navbar-nav .nav-link{

    color:#222;
    font-size:16px;
    font-weight:400;
    margin:0 18px;
    transition:.35s;
    position:relative;

}

.navbar-nav .nav-link:after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#9b772f;

    transition:.35s;

}

.navbar-nav .nav-link:hover{

    color:#9b772f !important;

}

.navbar-nav .nav-link:hover:after{

    width:100%;

}

.right-box{

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

}

.call-btn{

    text-decoration:none;

    color:#222;

    border:1px solid #ddd;

    padding:12px 18px;

    border-radius:60px;

    font-size:15px;

    transition:.35s;

}

.call-btn:hover{

    background:#111;
    color:#fff;
    border-color:#111;

}

.enquire-btn{

    background:#9b772f;

    color:#fff;

    text-decoration:none;

    padding:13px 26px;

    border-radius:60px;

    font-size:15px;

    transition:.35s;

}

.enquire-btn:hover{

    background:#7a5b1c;
    color:#fff;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* Mobile */

@media(max-width:991px){

.navbar{

padding:18px 0;

}

.navbar-brand img{

height:85px;

}

.navbar-nav{

margin-top:25px;

}

.navbar-nav .nav-link{

margin:14px 0;

}

.right-box{

margin-top:25px;

flex-direction:column;

width:100%;

}

.call-btn,
.enquire-btn{

width:100%;
text-align:center;

}

}







/* ===========================
   HERO BANNER
=========================== */

.banner-img{
    width:100%;
    height:calc(100vh - 102px);
    object-fit:cover;
    object-position:center;
}

.carousel-item{
    overflow:hidden;
}

.carousel-indicators{
    margin-bottom:20px;
}

.carousel-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
    margin:0 5px;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

@media (max-width:991px){

    .banner-img{
        height:70vh;
    }

    .navbar-nav{
        text-align:center;
        padding-top:15px;
    }

}

@media (max-width:767px){

    .banner-img{
        width:100%;
        height:auto;
        max-height:calc(100vh - 80px);
        object-fit:contain;
    }

    /* SHOW arrows on mobile */
    .carousel-control-prev,
    .carousel-control-next{
        display:flex;
        width:42px;
        height:42px;
        top:50%;
        transform:translateY(-50%);
        background:rgba(0,0,0,.45);
        border-radius:50%;
        opacity:1;
    }

    .carousel-control-prev{
        left:10px;
    }

    .carousel-control-next{
        right:10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:18px;
        height:18px;
        background-size:18px;
    }

    .carousel-indicators{
        bottom:10px;
    }

}






























.about-section{

    padding:90px 0;
    background:#fff;

}

.section-tag{

    display:inline-block;

    color:#9b772f;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:15px;

}

.section-title{

    font-size:48px;

    font-weight:600;

    color:#1d1d1d;

    margin-bottom:20px;

}

.section-text{

    color:#666;

    line-height:1.9;

    font-size:14px;

    margin-bottom:35px;

    font-weight: 300;

}

.feature-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.feature-list div{

    font-size:15px;

    color:#222;

}

.feature-list i{

    color:#9b772f;

    margin-right:8px;

}

.about-btn{

    display:inline-block;

    background:#9b772f;

    color:#fff;

    padding:15px 36px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;



}

.about-btn:hover{

    background:#914f24;
    color:#fff;

}

.about-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.about-image img{

    width:100%;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

@media(max-width:991px){

.section-title{

font-size:36px;

}

.feature-list{

grid-template-columns:1fr;

}

.about-section{

text-align:center;

}

}









/* Property Info Box */

.property-info-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:25px 20px;
    margin:35px 0;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.info-item{
    flex:1;
    text-align:center;
}

.info-label{
    display:block;
    font-size:13px;
    color:#9b772f;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.info-item h3{
    font-size:24px;
    font-weight:600;
    color:#222;
    margin:0;
    line-height:1.4;
}

.divider{
    width:1px;
    height:60px;
    background:#e5e5e5;
}

/* Mobile */

@media (max-width:768px){

.property-info-box{

    flex-direction:column;
    text-align:center;
    padding:20px;

}

.divider{

    width:100%;
    height:1px;
    margin:18px 0;

}

.info-item{

    width:100%;

}

.info-item h3{

    font-size:22px;

}

}



























/*==================================
Highlights Section
===================================*/

.highlights-section{

    background: linear-gradient(135deg, #9b772f, #634b1b);

    padding:90px 0;

}

.section-subtitle{

    color:#ffd7b7;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:500;

}

.section-title{

    color:#fff;

    font-size:44px;

    font-weight:600;

    margin-top:12px;

}

.highlight-card{

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

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

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    backdrop-filter:blur(6px);

}

.highlight-card:hover{

    transform:translateY(-8px);

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

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.highlight-card .icon{

    font-size:48px;

    color:#fff;

    margin-bottom:20px;

}

.highlight-card h4{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;

    font-weight:600;

}

.highlight-card p{

    color:#f4f4f4;

    line-height:1.8;

    font-size:15px;

    margin:0;

}

.highlight-btn{

    display:inline-block;

    padding:16px 45px;

    border-radius:50px;

    background:#1f1f1f;

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

    border:2px solid rgba(255,255,255,.2);

}

.highlight-btn:hover{

    background:#fff;

    color:#9b772f;

}

@media(max-width:991px){

.section-title{

font-size:34px;

}

.highlight-card{

padding:30px 22px;

}

}

@media(max-width:767px){

.highlights-section{

padding:70px 0;

}

.section-title{

font-size:28px;

}

.highlight-card{

padding:28px 20px;

}

.highlight-card h4{

font-size:21px;

}

.highlight-btn{

width:100%;

}

}



















/*============================
Floor Plan Card
=============================*/

.floor-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

        border: 1px solid #9b772f;



}

.floor-card:hover{

    transform:translateY(-8px);

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

}

.floor-image{

    position:relative;

    overflow:hidden;

}

.floor-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

    filter:blur(3px);

}

.floor-card:hover img{

    transform:scale(1.08);

    filter:blur(0);

}

.blur-overlay{

    position:absolute;

    inset:0;

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

}

.view-plan{

    position:absolute;

    left:50%;

    top:50%;

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

    background:#fff;

    color:#9b772f;

    padding:12px 26px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    opacity:0;

    transition:.35s;

}

.floor-card:hover .view-plan{

    opacity:1;

}

.floor-content{

    padding:25px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

}

.info-box small{

    color:#999;

    display:block;

    margin-bottom:6px;

}

.info-box h5{

    font-size:22px;

    font-weight:600;

    margin:0;

}

.price-box-floor{

    background:#f7f7f7;

    border-radius:12px;

    padding:18px;

    text-align:center;

    margin-bottom:22px;

}

.price-box-floor small{

    color:#777;

}

.price-box-floor h4{

    margin:6px 0 0;

    color:#9b772f;

    font-size:28px;

    font-weight:700;

}

.floor-btn{

    display:block;

    text-align:center;

    background:#1d1d1d;

    color:#fff;

    padding:15px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.floor-btn::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

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

    transition:.45s;

}

.floor-btn:hover::before{

    left:100%;

}

.floor-btn:hover{

    background:#9b772f;

    color:#fff;

}

@media(max-width:991px){

.floor-image img{

height:240px;

}

}

@media(max-width:767px){

.floor-content{

padding:20px;

}

.info-row{

flex-direction:column;

gap:15px;

}

.floor-image img{

height:220px;

}

.price-box-floor h4{

font-size:24px;

}

}





/*============================
Floor Plan Section
=============================*/

.floorplan-section{
    padding:90px 0;
    background:#f8f8f8;
}

.floorplan-section .section-tag{
    display:inline-block;
    color:#9b772f;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:12px;
}

.floorplan-section .section-title{
    font-size:42px;
    font-weight:600;
    color:#222;
    margin-bottom:15px;
}

.floorplan-section .section-text{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:767px){

.floorplan-section{
    padding:70px 0;
}

.floorplan-section .section-title{
    font-size:30px;
}

}






















/*==================================
Amenities
===================================*/

.amenities-section{
    padding:90px 0;
    background:#fff;
}

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

.amenity-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:28px 20px;

    text-align:center;

    transition:.35s;

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

}

.amenity-card:hover{

    transform:translateY(-8px);

    border-color:#9b772f;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.amenity-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    border-radius:50%;

    background:#f9f3ef;

    color:#9b772f;

    font-size:32px;

    transition:.35s;

}

.amenity-card:hover i{

    background:#9b772f;

    color:#fff;

}

.amenity-card h5{

    margin-top:18px;

    font-size:18px;

    font-weight:600;

    color:#222;

}

.amenity-card p{

    font-size:14px;

    color:#777;

    margin:8px 0 0;

    line-height:1.6;

}

/* Tablet */

@media(max-width:991px){

.amenities-slider{

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

}

}

/* Mobile */

@media(max-width:767px){

.amenities-slider{

display:flex;

overflow-x:auto;

gap:16px;

padding-bottom:10px;

scroll-snap-type:x mandatory;
        padding-top: 15px;

}

.amenities-slider::-webkit-scrollbar{

display:none;

}

.amenity-card{

min-width:170px;

padding:22px 15px;

flex:none;

scroll-snap-align:start;

}

.amenity-card i{

width:58px;
height:58px;
font-size:26px;

}

.amenity-card h5{

font-size:16px;

}

}






/*==================================
Gallery
===================================*/

.gallery-section{

    padding:90px 0;

    background:#fafafa;

}

.gallery-slider{

    display:grid;

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

    gap:22px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* Modal */

.gallery-modal{

    background:#000;

}

.gallery-modal .modal-body{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.gallery-modal img{

    max-width:90%;

    max-height:90vh;

    border-radius:10px;

}

.gallery-prev,
.gallery-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    border:none;

    width:55px;

    height:55px;

    border-radius:50%;
    background: rgb(0 0 0 / 81%);

    color:#fff;

    font-size:28px;

    transition:.3s;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:#9b772f;

}

.gallery-prev{

    left:40px;

}

.gallery-next{

    right:40px;

}

.gallery-modal .btn-close{

    position:absolute;

    right:30px;

    top:30px;

    z-index:1000;

    transform:scale(1.3);

        filter: none;

}

/* Tablet */

@media(max-width:991px){

.gallery-slider{

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

}

}

/* Mobile */

@media(max-width:767px){

.gallery-slider{

display:flex;

overflow-x:auto;

gap:15px;

scroll-snap-type:x mandatory;

padding-bottom:10px;

}

.gallery-slider::-webkit-scrollbar{

display:none;

}

.gallery-item{

min-width:260px;

flex:none;

scroll-snap-align:start;

}

.gallery-item img{

height:220px;

}

.gallery-prev,
.gallery-next{

width:42px;

height:42px;

font-size:22px;

}

.gallery-prev{

left:10px;

}

.gallery-next{

right:10px;

}

}


















/*==============================
Location
==============================*/

.location-section{

padding:90px 0;

background:#fff;

}

.location-map{

border-radius:22px;

overflow:hidden;

box-shadow:0 18px 50px rgba(0,0,0,.08);

}

.location-map iframe{

width:100%;

height:520px;

border:none;

}

.location-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 18px 45px rgba(0,0,0,.08);

border:1px solid #eee;

}

.location-card h3{

font-size:28px;

margin-bottom:30px;

font-weight:600;

}

.location-card ul{

list-style:none;

padding:0;

margin:0;

}

.location-card li{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 0;

border-bottom:1px solid #eee;

}

.location-card li:last-child{

border:none;

}

.location-card i{

width:46px;

height:46px;

background:#f7f3ef;

color:#9b772f;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

margin-right:15px;

}

.location-card span{

flex:1;

font-size:17px;

font-weight:500;

color:#333;

}

.location-card strong{

font-size:17px;

color:#9b772f;

}

@media(max-width:991px){

.location-map iframe{

height:420px;

}

}

@media(max-width:767px){

.location-section{

padding:70px 0;

}

.location-map iframe{

height:320px;

}

.location-card{

margin-top:10px;

padding:25px;

}

.location-card li{

padding:15px 0;

}

.location-card span{

font-size:15px;

}

.location-card strong{

font-size:15px;

}

}











.location-details{

    background:#fff;

    border-radius:20px;

    padding:35px;

    /*box-shadow:0 15px 40px rgba(0,0,0,.08);*/

    border:1px solid #eee;

}

.location-group{

    margin-bottom:28px;

}

.location-group:last-child{

    margin-bottom:0;

}

.location-group h4{

    font-size:20px;

    font-weight:600;

    margin-bottom:18px;

    color:#222;

    display:flex;

    align-items:center;

    gap:10px;

}

.location-group h4 i{

    color:#9b772f;

    font-size:22px;

}

.location-group ul{

    list-style:none;

    margin:0;

    padding:0;

}

.location-group li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 0;

    border-bottom:1px dashed #e6e6e6;

}

.location-group li:last-child{

    border-bottom:none;

}

.location-group span{

    color:#555;

    font-size:15px;

    padding-right:20px;

}

.location-group strong{

    color:#9b772f;

    font-weight:600;

    white-space:nowrap;

}

@media(max-width:991px){

.location-details{

margin-top:25px;

}

}

@media(max-width:767px){

.location-details{

padding:25px;

}

.location-group h4{

font-size:18px;

}

.location-group li{

flex-direction:column;

align-items:flex-start;

gap:4px;

}

.location-group strong{

font-size:15px;

}

}







/*==================================
Disclaimer
===================================*/

.disclaimer-section{

    background:#24201d;

    color:#d8d8d8;

    padding:70px 0 50px;

}

.disclaimer-section h4{

    color:#fff;

    font-size:12px;

    margin-bottom:25px;

   
    font-weight: 400;

}

.disclaimer-section p{

    font-size:11px;
    font-weight: 200;

 

    margin-bottom:18px;

    color:#bfbfbf;

}

.disclaimer-section hr{

    border-color:rgba(255,255,255,.1);

    margin:35px 0;

}

.footer-links{
    font-size: 12px;
    font-weight: 200;

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#9b772f;

}

.copyright{

    color:#999;

    font-size:14px;

}

@media(max-width:767px){

.disclaimer-section{

padding:55px 0 40px;

}

.footer-links{

flex-direction:column;

gap:15px;

}

.disclaimer-section h4{

font-size:24px;

}

.disclaimer-section p{

font-size:14px;

line-height:1.8;

}

}





/*==================================
Developer
===================================*/

.developer-section{

    padding:90px 0;

    background:#f8f8f8;

}

.developer-content{

    max-width:1100px;

    margin:auto;

    text-align:center;

}

.developer-content p{

      font-size: 14px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    font-weight: 300;

}

.developer-logo{

    text-align:center;

    margin:50px 0 30px;

}

.developer-logo img{

    height:80px;

}

.rera-box{

    font-weight: 200;
    font-size: 14px;

    max-width:550px;

    margin:auto;

    text-align:center;

}

.rera-box p{

    margin-bottom:10px;

    color:#444;

    font-size:14px;

}

.rera-box strong{

    color:#9b772f;

}

@media(max-width:991px){

.developer-content p{

font-size:17px;

}

}

@media(max-width:767px){

.developer-section{

padding:70px 0;

}

.developer-content{

text-align:left;

}

.developer-content p{

font-size:16px;

line-height:1.8;

}

.developer-logo img{

height:65px;

}

.rera-box{

padding:0 15px;

}

.rera-box p{

font-size:15px;

}

}







/*==================================
Desktop Sticky Enquiry
===================================*/

.sticky-enquiry{

position:fixed;

right:-55px;

top:50%;

transform:translateY(-50%) rotate(-90deg);

background:#9b772f;

color:#fff;

padding:14px 30px;

border-radius:12px 12px 0 0;

text-decoration:none;

font-weight:500;

letter-spacing:1px;

z-index:999;

transition:.35s;

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

}

.sticky-enquiry:hover{

background:#7a5b1c;

color:#fff;

right:-48px;

}


/*==================================
Floating Buttons
===================================*/

.floating-buttons{

position:fixed;

left:25px;

bottom:150px;

display:flex;

flex-direction:column;

gap:15px;

z-index:999;

}

.floating-btn{

width:60px;

height:60px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:28px;

color:#fff;

box-shadow:0 12px 25px rgba(0,0,0,.18);

transition:.35s;

}

.whatsapp{

background:#25D366;

}

.call{

background:#9b772f;

}

.floating-btn:hover{

transform:translateY(-5px) scale(1.08);

color:#fff;

}


/*==================================
Mobile Sticky
===================================*/

.mobile-sticky{

display:none;

}


/*==================================
Responsive
===================================*/

@media(max-width:767px){

.sticky-enquiry{

display:none;

}

.floating-buttons{

display:none;

}

.mobile-sticky{

position:fixed;

left:0;

bottom:0;

width:100%;

background:#fff;

display:flex;

box-shadow:0 -5px 25px rgba(0,0,0,.12);

z-index:9999;

}

.mobile-sticky a{

flex:1;

padding:12px 5px;

text-align:center;

text-decoration:none;

color:#222;

font-size:14px;

font-weight:500;

border-right:1px solid #eee;

}

.mobile-sticky a:last-child{

border:none;

}

.mobile-sticky i{

display:block;

font-size:22px;

margin-bottom:5px;

color:#9b772f;

}

body{

padding-bottom:70px;

}

}














/*==============================
 Premium Popup
===============================*/

.enquiry-modal{
    border:none;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.18);
}

.modal-header-box{
    padding:40px 35px 25px;
    text-align:center;
    background:linear-gradient(135deg,#faf7f2,#ffffff);
    border-bottom:1px solid #ececec;
}

.popup-logo{
    height:60px;
    margin-bottom:18px;
}

.modal-header-box h2{
    font-size:28px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.modal-header-box p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

.modal-body{
    padding:35px;
}

.input-group-custom{
    position:relative;
    margin-bottom:18px;
}

.input-group-custom i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#9b772f;
    font-size:18px;
}

.input-group-custom .form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #ddd;
    padding-left:50px;
    box-shadow:none;
    font-size:15px;
}

.input-group-custom .form-control:focus{
    border-color:#9b772f;
    box-shadow:0 0 0 4px rgba(184,106,52,.08);
}

.submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#9b772f;
    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.submit-btn:hover{
    background:#7a5b1c;
}

.secure-text{
    margin-top:18px;
    text-align:center;
    font-size:13px;
    color:#777;
}

.secure-text i{
    color:#28a745;
    margin-right:5px;
}

.btn-close{
    position:absolute;
    right:18px;
    top:18px;
    z-index:10;
}

@media(max-width:576px){

.modal-header-box{
    padding:30px 20px;
}

.modal-body{
    padding:25px 20px;
}

.popup-logo{
    height:50px;
}

.modal-header-box h2{
    font-size:24px;
}

}






/*==================================
Sticky Lead Form
===================================*/

.sticky-lead-form{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    z-index:999;

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

    backdrop-filter:blur(12px);

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

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

    padding:15px 0 10px;

}

.lead-form .form-control{

    height:54px;

    border:none;

    border-bottom:2px solid #ddd;

    border-radius:0;

    background:transparent;

    box-shadow:none;

    padding-left:0;

    font-size:15px;

}

.lead-form .form-control:focus{

    border-color:#9b772f;

}

.lead-form button{

    width:100%;

    height:54px;

    border:none;

    border-radius:10px;

    background:#9b772f;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.lead-form button:hover{

    background:#715b1c;

}

.sticky-note{

    margin-top:10px;

    text-align:center;

    font-size:12px;

    color:#777;

}














.about-form{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

    border:1px solid #ececec;

}

.form-header{

    text-align:center;

    margin-bottom:30px;

}

.form-header span{

    display:inline-block;

    background:#f6efe9;

    color:#9b772f;

    padding:7px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}

.form-header h3{

    font-size:32px;

    font-weight:600;

    margin-bottom:10px;

}

.form-header p{

    color:#666;

    line-height:1.8;

}

.about-form .form-control{

    height:56px;

    border-radius:12px;

    border:1px solid #ddd;

    box-shadow:none;

}

.about-form .form-control:focus{

    border-color:#9b772f;

}

.about-submit{

    width:100%;

    height:56px;

    border:none;

    border-radius:12px;

    background:#9b772f;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.about-submit:hover{

    background:#715b1c;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-top:30px;

}

.about-features div{

    font-size:15px;

    color:#444;

}

.about-features i{

    color:#9b772f;

    margin-right:8px;

}

@media(max-width:767px){

.about-form{

padding:25px;

}

.form-header h3{

font-size:26px;

}

.about-features{

grid-template-columns:1fr;

}

}




