body{
    margin: 0;
    font-size: 20px;
    line-height: 30px;
     font-family: "Barlow Condensed", sans-serif;
}
ul{
    margin: 0;
    padding: 0;
} 
li{
    list-style: none;
}
a{
    text-decoration: none;
    transition: all .5s ease;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}
.container-fluid{
    padding: 0px 40px;
}

.cont-cent-cent{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-cent-rgt{
    display: flex;
    justify-content: right;
    align-items: center;
}
.cont-midd{
    display: flex;
    align-items: center;
}
.position-bottom{
    display: flex;
  justify-content: center;
  align-items: end;
}

/* =======Default css end=========== */




.realty-input-sec input{
  font-size: 18px;
}
        .da-top-header {
            background-color: #e2b65d;
            color: white;
            padding: 12px 0;
            position: relative;
            z-index: 100;
        }
        .da-marquee-wrapper {
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }
        .icon-mn-txt{
            margin: 0 10px;
        }
        .da-contact-info {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        .da-contact-info a {
            color: #000641;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .da-contact-icon {
            background-color: #fff;
            color: #000;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .da-main-navbar {
            position: sticky;
            top: 0;
            z-index: 55;
            transition: all 0.3s ease-in-out;
            background-color: #fff;
            padding: 15px 0;
        }
        .da-main-navbar.da-scrolled {
            background-color: #fff;
            padding:15px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .da-navbar-brand {
            color: #fff !important;
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .da-navbar-brand span {
            color: #e2b65d;
        }
        .da-nav-link {
            color: #000000 !important;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .da-nav-link:hover {
            color: #e2b65d !important;
        }
        .da-search-form {
            position: relative;
            width: 280px;
        }
        .da-search-input {
           border: none;
  font-size: 16px;
  line-height: 0;
  padding: 11px 20px;
  border-radius: 60px;
        }
        .da-search-btn {
            position: absolute;
  right: 15px;
  top: 46%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
        }
        

.navbar-dark .navbar-toggler-icon {
  background-image: url("../images/menu.png");
}

.da-hero-section {
    position: relative;
    margin-top: -90px;
    margin-bottom: 180px;
}

.da-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.da-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.da-hero-title {
    font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  margin-bottom: 20px;
}

.da-hero-subtitle {
    font-size: 20px;
    max-width: 600px;
    line-height:30px;
      font-family: "Montserrat", sans-serif;

}

/* --- Smooth Infinite Scroll --- */

.da-scroll-columns-wrapper {
    display: flex;
    gap: 20px;
    height: 650px;
    position: relative;
    z-index: 15;
    margin-bottom: -100px;

    overflow: hidden;

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.da-scroll-columns-wrapper:hover .da-scroll-track {
    animation-play-state: paused;
}

.da-scroll-column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.da-scroll-column.col-right {
    margin-top: 50px;
}

.da-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;

    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
}

.track-up {
    animation: daSmoothScrollUp 25s linear infinite;
}

.track-down {
    animation: daSmoothScrollDown 25s linear infinite;
}

@keyframes daSmoothScrollUp {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, calc(-50% - 10px), 0);
    }
}

@keyframes daSmoothScrollDown {
    0% {
        transform: translate3d(0, calc(-50% - 10px), 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.da-scroll-img-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    transform: translateZ(0);
}

.da-scroll-img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;

    transform: translateZ(0);
}



        /* --- Bottom Form Section --- */
        .da-bottom-form-section {
            background-color: #2c64d4;
            padding: 50px 0;
            position: relative;
            z-index: 10;
        }
        .da-form-label {
            color: #fff;
            margin-bottom: 8px;
            font-size: 20px;
        }
        .da-form-control {
            border-radius: 4px;
            padding: 12px;
            border: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .da-submit-btn {
            background-color: #e2b65d;
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 4px;
            width: 100%;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .da-submit-btn:hover {
            background-color: #e2b65d;
        }

        /* Custom Range Slider */
        


.da-slider-main{
    position:relative;
    width:100%;
}

.da-range-slider{
    -webkit-appearance:none;
    appearance:none;
    width:100%;
    height:6px;
    border-radius:50px;
    outline:none;
    cursor:pointer;
    background:linear-gradient(to right,
        #cfcfcf 0%,
        #cfcfcf 100%);
    
    transition:all .25s ease;
}

.da-range-slider::-webkit-slider-runnable-track{
    height:6px;
    background:#cfcfcf;
    border-radius:50px;
}

.da-range-slider::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;

    width:24px;
    height:24px;
    border-radius:50%;

    background:#e2b65d;
    border:4px solid #ffffff;

    margin-top:-9px;
    cursor:pointer;

    box-shadow:
        0 0 0 2px rgba(255,255,255,0.12),
        0 3px 8px rgba(0,0,0,0.22);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.da-range-slider:hover::-webkit-slider-thumb{
    transform:scale(1.08);
}

.da-range-slider:active::-webkit-slider-thumb{
    transform:scale(1.14);
    background:#e2b65d;
}

.da-range-slider::-moz-range-track{
    height:6px;
    background:#cfcfcf;
    border-radius:50px;
}

.da-range-slider::-moz-range-thumb{
    width:24px;
    height:24px;
    border-radius:50%;
    background:#e2b65d;
    border:4px solid #ffffff;
    cursor:pointer;

    box-shadow:
        0 0 0 2px rgba(255,255,255,0.12),
        0 3px 8px rgba(0,0,0,0.22);

    transition:all .18s ease;
}
.da-range-labels{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
    padding:0 3px;
    position:relative;
}

.da-range-labels span{
    position:relative;
    color:#ffffff;
    font-size:20px;
    font-weight:500;
    line-height:1;
}

.da-range-labels span::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-20px;

    width:2px;
    height:13px;

    background:#d8d8d8;
    border-radius:10px;
}
.mn-txt, .icon-mn-txt i{
  color: #000641;
}



        @media (max-width: 991px) {
            .da-hero-section { padding-top: 120px; }
            .da-main-navbar { background-color:#fff; }
        }



       @media only screen and (min-width:0px) and (max-width: 992px){
        .morebtn-main{
          display: inline-block;
  background-color: #e2b65d;
  color: #000641;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 8px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
        }

        .realty-banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.promo-info-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px 10px;
    max-width: 480px; 
    height: 230px;
}

       } 


       @media only screen and (min-width:991px) and (max-width: 3000px){
            .realty-title{
              color: #fff;
            }
            .realty-price{
              color: #fff;
            }
            .morebtn-main{
              display: inline-block;
    background-color: #e2b65d;
    color: #000641;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 8px 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
            }
       }






/* ============================================================== */

.realty-nav-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #333333; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.realty-carousel-control:hover .realty-nav-icon {
    background-color: #f8f9fa; 
    color: #000000;
}
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out !important;
}

.realty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
    pointer-events: none;
}


.realty-explore-btn {
    pointer-events: auto;
}

.realty-carousel-control {
    z-index: 99 !important;
}

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out !important;
}

.realty-search-btn{
    display: inline-block;
  background-color: #e2b65d;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 8px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 400;
  border: 0;
}

.realty-search-btn:hover{
    background-color:#07108a ;
    color: #fff;
}



.realty-hero-section {
    position: relative;
    margin-bottom: 100px; 
}
.realty-carousel-control {
    z-index: 10 !important; 
    width: 10%;
}

.realty-banner-carousel .realty-banner-img {
    height: 450px;
    object-fit: cover;
}

.realty-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.realty-brand {
    font-size: 14px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.realty-title {
   font-size: 55px;
  margin-top: 10px;
}

.realty-price {
    font-size: 18px;
    margin-top: 10px;
}

.realty-explore-btn {
    border-radius: 0;
    padding: 8px 20px;
    margin-top: 15px;
}

.realty-widget-container {
    position: absolute;
    bottom: -180px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1100px;
}

.realty-search-widget {
    background: #ffffff;
    border-radius: 5px;
    padding: 20px 30px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.realty-nav-tabs {
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.realty-nav-tabs::-webkit-scrollbar {
    display: none; 
}

.realty-nav-tabs .nav-link {
    border: none;
    color: #555;
    padding: 10px 20px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
}


.realty-nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent transparent #e2b65d transparent; 
    color: #000;
}

.realty-has-dot {
    position: relative;
}
.realty-has-dot::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 12px;
    width: 6px;
    height: 6px;
    background-color: #e2b65d;
    border-radius: 50%;
}

.realty-post-prop {
    border-left: 1px solid #f0f0f0 !important;
}
.realty-badge-free {
    background-color: #198754;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

.realty-tab-content {
    padding-top: 20px;
}

.realty-search-bar-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
}

.realty-dropdown-sec select {
    cursor: pointer;
}

.realty-dropdown-sec select:focus {
    box-shadow: none;
}

.realty-input-sec input:focus {
    box-shadow: none;
}

.realty-icon-btn {
    background-color: #f8f8f8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
}
.realty-actions-sec i{
    color: #e2b65d !important;
}

.realty-icon-btn:hover {
    background-color: #e2e6ea;
}

.realty-search-btn {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .realty-widget-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
         
    }
    .realty-hero-section {
        margin-bottom: 40px;
    }
    .realty-dropdown-sec {
        border-end: none !important;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
    }
}

.realty-dropdown-sec{
    width: 20% !important;
}
.realty-input-sec{
    width: 55% !important;
}
.realty-actions-sec{
    width: 25% !important;
}




/* ========================= search bottom slider ============================================= */



.pls-wrapper{
    background:#07108a;
    padding:20px 30px;
    position:relative;
    display:flex;
    align-items:center;
    gap:100px;
    border-radius: 0px 0px 10px 10px;
}



.pls-heading{
    color:#fff;
    font-size:20px;
    font-weight:500;
    white-space:nowrap;
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:10px;
}


.pls-slider{
    width:100%;
    overflow:hidden;
}

.pls-slider .swiper-slide{
    width:auto !important;
}


.pls-item{
    height:46px;
    padding:0 24px;
    border-radius:5px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.05);

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;
    font-size:20px;
    white-space:nowrap;

    transition:0.3s ease;
}

.pls-item:hover{
    background:rgba(255,255,255,0.18);
}

.pls-item-arrow{
    font-size:14px;
    line-height:1;
}


.pls-nav{
    width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #140c2f !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  z-index: 10;
}

.pls-nav::after{
    font-size:15px;
    font-weight:700;
}


.pls-prev{
    left:220px;
}


.pls-next{
    right:12px;
}


@media(max-width:991px){

    .pls-wrapper{
        padding:10px 50px;
    }

    .pls-prev{
        left:10px;
    }

}

@media(max-width:767px){

    .pls-wrapper{
        gap:10px;
    }

    .pls-heading{
        font-size:14px;
    }

    .pls-item{
        height:42px;
        padding:0 18px;
        font-size:14px;
    }

    .pls-nav{
        width:34px;
        height:34px;
    }

}
.pls-slider .swiper-slide{
    width:auto;
}

















        .thumb-nav-item {
            cursor: pointer;
            width: 120px;
            text-align: center;
        }
        
        .thumb-img-wrapper {
            padding: 3px;
            border: 2px solid transparent;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .thumb-nav-item.active .thumb-img-wrapper {
            border-color: #6338f0;
        }

        .thumb-nav-item img {
            width: 100%;
            height: 65px;
            object-fit: cover;
            border-radius: 6px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .thumb-nav-item.active img, .thumb-nav-item:hover img {
            opacity: 1;
        }

        .thumb-title {
            font-size: 18px;
            color: #6c757d;
            margin-top: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-info p{
           font-size: 20px;
           color: #000 !important;
        }

        .thumb-nav-item.active .thumb-title {
            color: #212529;
            font-weight: 600;
        }

        .custom-slider-container {
            position: relative;
            overflow: hidden;
            margin-top: 20px;
            border-radius: 10px; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide-card {
            flex: 0 0 100%; 
            display: flex;
            background: #fff;
            min-height: 400px;
        }

        .card-info {
            flex: 0 0 30%;
            background: #f8f9fa;
            padding:50px 35px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-image-wrapper {
            flex: 0 0 70%;
            position: relative;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .dev-logo {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .btn-contact {
            background-color: #e2b65d;
            color: #000641;
            font-size: 18px;
            border-radius: 6px;
            padding: 12px;
            text-transform: uppercase;
            border: none;
            transition: background-color 0.2s;
        }
        .btn-contact-enq{
          background-color: #4a27b8;
            color: white;
            font-size: 18px;
            text-transform: uppercase;
            border-radius: 6px;
            padding: 12px;
            border: none;
            transition: background-color 0.2s;
        }
        .btn-contact-enq:hover {
            background-color: #e2b65d;
            color: white;
        }

        .btn-contact:hover {
            background-color: #4a27b8;
            color: white;
        }

        .pause-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            z-index: 5;
            cursor: pointer;
        }

        .pause-btn:hover {
            background: rgba(0,0,0,0.7);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1px solid #eaeaea;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            cursor: pointer;
            z-index: 10;
            color: #333;
            transition: all 0.2s;
        }

        .nav-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            color: #5c33df;
        }

        .nav-prev-btn { left: 5px; }
        .nav-next-btn { right: 5px; }

        @media (max-width: 991px) {
            .slide-card {
                flex-direction: column;
            }
            .card-info, .card-image-wrapper {
                flex: 1 1 auto;
                width: 100%;
            }
        }

        .text-left{
            text-align: left !important;
        }

        .card-info h6{
            font-size: 26px;
            line-height: 36px;
            font-weight: 500;
        }

/* ======================================================================================================
                                        2nd section start 
=========================================================================================================*/



        .fp-section-wrapper {
            margin: 60px auto;
            margin-top: 250px !important;
        }

        .fp-section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .fp-section-header h2 {
            font-size: 55px;
            font-weight: 400;
            color: #000;
            margin-bottom: 15px;
        }
        .fp-section-header p {
            color: #000000;
            font-family: "Montserrat", sans-serif;
            font-size: 20px;
  line-height: 30px;
}

        .fp-card {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin: 10px; 
            display: flex;
            flex-direction: column;
        }
        .fp-card-image {
            width: 100%;
            height: 290px;
            object-fit: cover;
            display: block;
        }
        
        .fp-card-body {
            padding: 25px;
        }
        .fp-card-title-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 5px;
        }
        .fp-card-title {
            font-size: 28px;
            line-height: 38px;
            font-weight: 400;
        }
        .fp-price-block {
            text-align: right;
        }
        .fp-price {
            font-size: 24px;
            font-weight: 500;
            color: #000;
        }
        .fp-price i {
            font-size: 16px;
        }
        .fp-price-onwards {
            font-size: 18px;
            color: #000000;
        }
        .fp-card-subtitle {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
        }
        .fp-badge-ongoing {
            display: inline-block;
  background-color: #275cc9;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 20px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
        }

        .fp-card-footer {
            border-top: 1px solid #eaeaea;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fdfdfd;
        }
        .fp-location {
            font-size: 16px;
            color: #000000;
            display: flex;
            align-items: center;
            font-family: "Montserrat", sans-serif;
            gap: 6px;
        }
        .fp-location i {
            color: #e2b65d; 
            font-size: 14px;
        }
        .fp-rera-id {
            font-size: 16px;
            color: #000000;
            font-family: "Montserrat", sans-serif;
        }

        .owl-theme .owl-dots {
            margin-top: 20px !important;
            text-align: center;
        }
        .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px 6px;
            background: #ffe3ac !important; 
            border-radius: 50%;
            display: block;
            transition: opacity 200ms ease;
        }
        .owl-theme .owl-dots .owl-dot.active span, 
        .owl-theme .owl-dots .owl-dot:hover span {
            background: #e2b65d !important; 
        }

        .fp-action-btn-wrapper {
            margin-top: 35px;
        }
        .fp-btn-view-more {
            display: inline-block;
  background-color: #e2b65d;
  color: #000641;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 8px 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
        }
        .fp-btn-view-more:hover {
            color: #fff;
            background-color: #07108a;
        }
        .fp-location img{
            width: 20px !important;
        }

        @media (max-width: 768px) {
            .fp-section-header h2 { font-size: 30px; }
            .fp-section-header p { font-size: 16px; line-height: 24px;}
            .fp-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
        }






/* ======================================================================================================
                                       3rd section start 
=========================================================================================================*/



       .da-trust-wrapper{
        margin: 70px 0;
       }

        .da-trust-container {
            margin: 0 80px;
            position: relative;
        }

        .da-trust-bg-pill {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 75%;
            background-color: #07108a; 
            border-radius: 300px;
            z-index: 1;
        }

        .da-trust-content-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2; 
        }

        .da-trust-image-col img {
            width: 100%; 
        }

        

        .da-trust-headline {
            font-size: 60px;
            color: #ffffff;
            font-weight: 400;
        }

        .da-trust-highlight {
            color: #e2b65d; 
        }

        

        
/* ======================================================================================================
                                      Who we are and what we do section start 
=========================================================================================================*/


.acct-img-wrapper {
            background-color: #fff;
            border-radius: 10px;
            padding: 15px;
        }
        
        .acct-img-item {
            object-fit: cover;
            border-radius: 10px;
            height: 300px;
            width: 100%;
        }
        .acct-stat-box p{
          color: #000 !important;
          font-size: 22px;
        }

        .acct-stats-bar {
            background: #fff;
            border-radius: 10px;
        }

        .acct-stat-box {
            position: relative;
        }

        .acct-stat-box:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background-color: #000;
        }

        .acct-badge {
            background-color: #f4effa !important;
            color: #8c5cdb !important;
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
        }

        .acct-feature-card {
            background-color: #faf9fc;
            border-radius: 1rem;
            border: 1px solid #f0ecf6;
        }

        .acct-feature-icon {
            background-color: #cbb4ef;
            color: white;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            font-size: 1.5rem;
        }

        .acct-btn {
            background-color: #1f1d2b;
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 2rem;
            font-weight: 500;
        }

        .acct-btn:hover {
            background-color: #000;
            color: white;
        }

        /* Bottom Section Styling */
        .acct-service-item {
            padding-bottom: 1rem;
        }

        .acct-service-icon-wrapper {
            background-color: #f4effa;
            color: #8c5cdb;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            font-size: 1.25rem;
        }

        /* Bottom borders for the grid to mimic the image */
        .acct-grid-row {
            position: relative;
        }
        
        .acct-grid-row::after {
             content: "";
             position: absolute;
             top: 50%;
             left: 0;
             width: 100%;
             height: 1px;
             background-color: #eee;
             z-index: 1;
        }


        .acct-stat-box  h3{
          font-size: 45px;
          font-weight: 500 !important;
        }

       

        .acct-main-desc{
          color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
        }


.acct-service-item {
    display: grid;
    grid-template-columns: 45px 1fr; 
    gap: 1rem;
    padding-bottom: 1rem;
}

.acct-service-icon-wrapper {
    width: 45px;
  height: 45px;
  background-color: #07108a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 0.75rem;
  transition: background-color 0.3s ease;
}
.acct-service-info h5{
font-size: 25px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 12px !important;
}
.acct-service-info p{
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
 .acct-heading-wrapper  h2{
          font-size: 55px;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
        }
.acct-service-title{
  font-size: 55px;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}


 @media only screen and (min-width:0px) and (max-width: 991px){
  .acct-heading-wrapper  h2{
          font-size: 35px;
        }
        .acct-service-title {
          font-size: 35px;
        }
        .acct-stat-box h3 {
  font-size: 22px;
        }
        .acct-stats-bar {
  padding: 20px 10px !important;
}
.acct-services-section{
  padding-top: 0 !important;
}
.acct-service-header{
  margin-right: 0px;
}
 }
.acct-partner-section{
  background-color: #f8f9fa;
  padding-top: 80px;
}
.acct-services-section{
  background-color:#f8f9fa ;
  padding-bottom: 80px;
  padding-top: 80px !important;
}
.acct-service-header p{
color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
.acct-service-header{
  margin-right: 20px;
}





/* ======================================================================================================
                                       4th section start 
=========================================================================================================*/



        .da-feat-section {
            padding: 60px 0;
        }

        .da-feat-number {
            font-size: 35px;
            font-weight: 500;
            color: #e2b65d;
        }

        .da-feat-line {
            width: 20px;
  height: 3.5px;
  background-color: #e2b65d;
  margin: 0 6px;
    margin-top: 0px;
  flex-shrink: 0;
        }

        .da-feat-title {
            font-size: 25px;
  font-weight: 500;
  color: #111111;
        }

        .da-feat-text {
            font-size: 18px;
            line-height: 28px;
            color: #000000;
            margin-top: 15px;
            text-align: justify;
            font-family: "Montserrat", sans-serif;
        }
        
        @media (max-width: 575px) {
            .da-feat-text {
                text-align: left;
            }
        }




/* ======================================================================================================
                                       5th section start 
=========================================================================================================*/





        .da-partner-section {
            padding: 60px 0;
            overflow: hidden;
        }
        .da-partner-heading {
            color: #ffffff;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 50px;
            letter-spacing: 0.5px;
        }

        .da-partner-carousel .item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px; 
        }

        .da-partner-carousel .item img {
            width: auto !important; 
            max-width: 100%;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .da-partner-carousel .item img:hover {
            transform: scale(1.05);
        }

        .da-partner-carousel .owl-nav,
        .da-partner-carousel .owl-dots {
            display: none !important;
        }


/* ======================================================================================================
                                       Footer css start 
=========================================================================================================*/





        .da-footer-wrapper {
            position: relative;
            background: url('../images/bg-footer.jpg') center/cover no-repeat;
            color: #ffffff;
            overflow: hidden;
        }

        .da-footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(12, 12, 15, 0.92); 
            z-index: 1;
        }

        .da-footer-content {
            position: relative;
            z-index: 2;
            padding-top: 140px;
            padding-bottom: 100px;
        }

        .da-footer-logo-icon {
            width: 180px;
            margin-bottom: 25px;
        }

        .da-footer-text {
            color: #ffffff; 
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 30px;
            font-family: "Montserrat", sans-serif;
        }
        .da-footer-social-block span{
            font-size: 25px;
            font-weight: 500;
        }

        .da-footer-social-block {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .da-footer-social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #ffffff;
            color: #000000;
            border-radius: 50%;
            text-decoration: none;
            margin-left: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .da-footer-social-icon:hover {
            background-color:#e2b65d;
            color: #ffffff;
        }

        .da-footer-heading {
            font-size:32px;
            font-weight: 400;
            margin-bottom: 25px;
        }

        .da-footer-links li {
            margin-bottom: 12px;
        }
        .da-footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
            font-family: "Montserrat", sans-serif;
        }
        .da-footer-links a:hover {
            color: #e2b65d;
        }

        .da-footer-contact-item {
            display: flex;
            align-items: flex-start; 
            margin-bottom: 20px;
        }
        .da-footer-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #ffffff;
            color: #000000;
            border-radius: 50%;
            flex-shrink: 0;
            font-size: 1.1rem;
            margin-right: 15px;
        }
        .da-footer-contact-title {
            display: block;
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 2px;
  line-height: 25px;
        }
        .da-footer-contact-detail {
            color: #fff;
font-family: "Montserrat", sans-serif;
            font-size: 18px;
        }

        .da-footer-bottom {
            background-color: #222222; 
            padding: 10px 0;
            position: relative;
            z-index: 2;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .da-footer-bottom p {
            font-family: "Montserrat", sans-serif;
            color: #fff;
            font-size: 18px;
        }




/* ======================================================================================================
                                    Home Page Mobile Responsive css start 
=========================================================================================================*/

 @media only screen and (min-width:0px) and (max-width: 991px){

    .container-fluid {
  padding: 0px 10px;
}
   .mn-txt{
    font-size: 16px;
   }
   .da-top-header{
    padding: 4px 0;
   }
   .logo-headerr{
    width: 120px;
   }
   .da-main-navbar{
    padding: 15px 0;
   }
   .da-hero-section{
    min-height: auto;
    margin-top: 0;
    padding-top: 0px;
    padding-bottom: 20px;
   }
   .da-hero-title{
    font-size: 40px;
    line-height: 50px;
    text-align: center;
   }
   .da-hero-subtitle {
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}


/*========= banner scroll responsive ============*/

 .da-scroll-columns-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
        overflow: hidden;
        margin-bottom: 0;

        mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%
        );

        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%
        );
    }

    .da-scroll-column {
        width: 100%;
        overflow: hidden;
    }

    .da-scroll-column.col-right {
        margin-top: 0;
    }

    .da-scroll-track {
        flex-direction: row;
        width: max-content;
        gap: 20px;
    }

    .track-up {
        animation: daHorizontalLeft 30s linear infinite;
    }

    .track-down {
        animation: daHorizontalRight 30s linear infinite;
    }

    .da-scroll-img-box {
        width: 125px;
        flex-shrink: 0;
        border-radius: 7px;
    }

    .da-scroll-img-box img {
        width: 100%;
    height: 125px;
        object-fit: cover;
        display: block;
    }

    @keyframes daHorizontalLeft {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-50% - 10px), 0, 0);
        }
    }

    @keyframes daHorizontalRight {
        0% {
            transform: translate3d(calc(-50% - 10px), 0, 0);
        }
        100% {
            transform: translate3d(0, 0, 0);
        }
    }

    .col-right{
        display: none;
    }



    .da-form-label{
        font-size: 16px;
    }
    .da-range-labels span{
        font-size: 16px;
    }
    .form-control{
        font-size: 14px;
    }
    .da-form-label{
        margin-bottom: 0;
    }
    .fp-card{
        margin: 0;
    }
    .fp-price, .fp-price-onwards{
        font-size: 16px;
        line-height: 22px;
    }
    .da-trust-container{
        margin: 0 10px;
    }
    .da-trust-text-col{
        margin: 50px 30px;
    }
    .da-trust-bg-pill{
        width: 100%;
    border-radius: 20px;
    height: 220px;
    margin-top: 70%;
    }
    .da-trust-headline {
  font-size: 32px;
    }
.da-trust-wrapper{
    margin: 0;
}
.da-footer-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.da-feat-section {
  padding: 30px 0;
}
.da-footer-text{
    font-size: 16px;
    line-height: 26px;
}
.da-footer-social-block span {
  font-size: 20px;
}
.da-footer-heading {
  font-size: 24px;
  margin-bottom: 10px;
}
.da-footer-links a{
    font-size: 16px;
}
.da-footer-links li {
  margin-bottom: 5px;
}
.da-footer-contact-title{
    font-size: 23px;
}
.da-footer-contact-detail{
    font-size: 16px;
}
.da-footer-contact-item{
    margin-bottom: 10px;
}
.da-footer-icon-circle {
  width: 30px;
  height: 30px;
  font-size: 1.0rem;
}
.da-footer-bottom p{
    font-size: 16px;
}
 }

/*============ After Banner and 2nd section changes =================*/

 @media only screen and (min-width:0px) and (max-width: 991px){
.realty-nav-icon {
  width: 30px;
  height: 30px;
  font-size: 12px;
  background-color: #e2b65d;
}
.realty-title {
  font-size: 30px;
}
.realty-banner-carousel .realty-banner-img {
  height: 350px;
}
.realty-nav-tabs .nav-link {
  padding: 5px 10px;
  margin-bottom: 0px;
}
.realty-nav-tabs li{
    font-size: 18px;
}
.realty-search-widget {
  padding: 10px 15px;
}
.realty-input-sec {
  width: 100% !important;
  border: 1px solid #f4f4f4;
  padding: 5px;
}
.realty-actions-sec {
  width: 100% !important;
  justify-content: center !important;
}
.realty-dropdown-sec {
  width: 100% !important;
  border-bottom: 1px solid #e0e0e0 !important;
  margin: 5px;
  border-right: 0 !important;
}
.pls-nav{
    top: 85%;
}
.da-hero-section{
    margin-bottom: 0;
}
.fp-section-wrapper{
    margin-top: 0 !important;
}
.fp-section-header {
  margin-bottom: 0px;
}
.card-info{
    padding: 20px;
}
.card-image-wrapper img {
  height: 350px;
}
 }








 /* ======================================================================================================
                                   Whatsapp Floating Button css start 
=========================================================================================================*/

.wa-floating-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: waPulse 1.8s infinite;
}

.wa-floating-btn:hover{
    transform: scale(1.1);
    color: #fff;
    background: #1ebe5d;
}

@keyframes waPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:576px){
    .wa-floating-btn{
        width: 58px;
        height: 58px;
        font-size: 30px;
        right: 15px;
        bottom: 10%;
    }
}





/* ======================================================================================================
                                   Common Banner css start 
=========================================================================================================*/

.property-banner{
  background:#000 ;
}

.da-hero-sectioncm {
  position: relative;
  min-height: 15vh;
  display: flex;
  align-items: center;

  background-position: center;
  margin-top: -110px;
}
.da-hero-overlaycm {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.da-hero-titlecm{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 5px;
}
.color-red{
    color: #e2b65d;
}

.da-hero-sectioncm h2{
    font-size: 18px;
    font-weight: 400;
}


/* ======================================================================================================
                                   Property Details css start 
=========================================================================================================*/


/*================ 1st section start ===============*/

        .stat-value {
            font-size: 0.95rem;
            color: #2b3945;
            font-weight: 500;
        }
        .stat-label {
            font-size: 0.8rem;
            color: #6c757d;
        }
        .stat-icon {
            color: #adb5bd;
        }

        @media (max-width: 767.98px) {
            .stat-col {
                border-right: none !important;
                border-bottom: 1px solid #dee2e6;
                padding-bottom: 15px;
                margin-bottom: 15px;
            }
            .stat-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;
            }
        }
        .main-linesec h5{
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 25px;
        }
        .color-gold{
            color:#e2b65d ;
        }
        .top-heads h2{
            font-size: 30px;
            line-height: 40px;
        }
        .mid-loc span{
            font-size: 18px;
            line-height: 28px;
        }
        .rera-info p{
            font-size: 18px;
            line-height: 28px;
            font-family: "Montserrat", sans-serif;
        }
        .pricemn h4{
            font-size: 25px;
            line-height: 35px;
            font-weight: 400;
        }
        .icon-mns{
            min-width: 50px;
    height: 50px;
    background-color:#07108a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size:18px;
    flex-shrink: 0;
    margin-right: 10px;
        }
        .stat-label h5{
            font-size: 18px;
            font-family: "Montserrat", sans-serif;
            line-height: 30px;
        }

        .flex-mand{
            display: flex;
            justify-content: space-between;
            align-items: start;
        }

/*================ Gallery section start ===============*/



.tp-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000; 
  }
  
  .tp-gallery-item img {
  width: 100%;
  height: 250px; 
  object-fit: cover; 
  transition: transform 0.4s ease-in-out;
  display: block;
}
  
  .tp-gallery-item:hover img {
    transform: scale(1.08);
  }
  
  .tp-main-img {
    height: 100%;
    min-height: 100%;
  }
  
  .tp-thumb-img {
    height: 190px;
  }
  
  /* The +5 Photos Overlay */
  .tp-more-photos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px); /* Subtle glass effect */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .tp-gallery-item:hover .tp-more-photos-overlay {
    background: rgba(0, 0, 0, 0.3);
  }




  /*================ stick section after section start ===============*/


  .tp-sticky-nav {
  z-index: 1030;
  background: #fff;
}

.sticky-top {
  top: 80px;
}

/* =========================
   SCROLL AREA
========================= */

.tp-nav-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tp-nav-scroll::-webkit-scrollbar {
  display: none;
}

/* =========================
   NAV
========================= */

.tp-nav-tabs {
  flex-wrap: nowrap;
  width: max-content;
}

.tp-nav-tabs .nav-link {
  font-size: 22px;
  font-weight: 400;
  color: #000;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  padding: 20px 35px !important;
}

.tp-nav-tabs .nav-link.active {
  border-color: #000;
}

/* =========================
   ARROWS
========================= */

.tp-nav-arrow {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
}

.tp-nav-left {
  left: 0;
}

.tp-nav-right {
  right: 0;
}


@media(max-width:767px){

  .tp-nav-tabs .nav-link {
    font-size: 20px;
    padding: 15px 20px !important;
  }

  .tp-nav-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

}



.tp-nav-tabs .nav-link:hover {
  color: #3b3b98;
}

.tp-nav-tabs .nav-link.active {
  color: #3b3b98 !important;
  border-bottom-color: #3b3b98;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tp-scroll-section {
  scroll-margin-top: 90px;
}

.tp-label-width {
  width: 170px;
  flex-shrink: 0;
  font-weight: 600;
}
.tp-btn-light {
  background-color: #e1e1e1;
  color: #000;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tp-btn-dark {
  background-color: #e2b65d;
  padding: 15px 0;
  color: #000641;
  border: none;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.tp-btn-dark:hover {
  background-color: #e2b65d;
  color: #ffffff;
}

.tp-sticky-sidebar {
  position: sticky;
  top: 180px;
  z-index: 10;
}

.tp-contact-form {
  background-color: #e2b65d;
  border-radius: 4px;
}
.tp-form-input {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.51);
  color: #000641 !important;
  border-radius: 0;
  padding-left: 0;
  padding-bottom: 8px;
  box-shadow: none !important;
  font-size: 20px;
}
.tp-form-input:focus {
  border-bottom-color: #000;
} 
.tp-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.tp-contact-form input::placeholder {
  color: #000000ac; 
  opacity: 1;    
}

.tp-phone-prefix {
  border-bottom: 1px solid rgba(0, 0, 0, 0.51);
  padding-bottom: 8px;
  color: #000641;
  display: flex;
  align-items: center;
}
.tp-terms-text {
  font-size: 20px;
  line-height: 30px;
  color: #000641;
}

.tp-checkbox {
  background-color: #e2b65d;
  border-color: #e2b65d;
  border-radius: 2px;
  margin-top: 0.2rem;
}
.tp-checkbox:checked {
  background-color: #000641;
  border-color: #000641;
}

.tp-btn-submit {
 background-color: #07108a;
  color: #fff;
  font-size: 18px;
  border: none;
}
.tp-btn-submit:hover {
  background-color: #07108a;
  color: #ffffff;
}


.heading-project{
    font-size: 30px;
  line-height: 40px;
}
.mont-description{
    font-size: 18px;
    line-height: 28px;
    font-family: "Montserrat", sans-serif;
}

.btn-outline-danger {
  color: #e2b65d;
  border-color: #e2b65d;
}
.btn-outline-danger:hover {
  color: #000641;
  border-color: #e2b65d;
  background: #e2b65d;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: none;
}
.text-sm{
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}
.headcon-txt{
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    color: #000641;
}




  /*================ Highlight section start ===============*/


.tp-highlight-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .tp-highlight-list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000;
    
  }

  .tp-highlight-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
  }

  .tp-view-more-btn {
    color: #e2b65d; 
    background: transparent;
    border: none;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease-in-out;
    padding: 0;
  }

  .tp-view-more-btn:hover {
    color: #e2b65d;
  }
  
  .tp-view-more-btn:focus {
    outline: none;
  }






/*================ Floor plan section start ===============*/





  .tp-fp-btn-active {
    background-color: #e2b65d !important;
    color: #000641 !important;
    border: none;
    padding: 6px 16px;
    font-size: 20px;
    font-weight: 500;
  }
  .tp-fp-btn-inactive {
    background-color: #07108a !important;
    color: #ffffff !important;
    border: none;
    padding: 6px 16px;
    font-size: 20px;
    font-weight: 500;
  }
  
  .tp-fp-card {
    background-color: #07108a;
    border-radius: 12px;
    padding: 12px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
  }
  
.tp-fp-img-area {
  background-color: #9c9c9c;
  border-radius: 8px;
  height: 350px; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tp-fp-img-area img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
}
  
  .tp-fp-details {
    padding: 16px 8px 8px 8px;
  }
  
  .tp-fp-track {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px; 
  }
  
  .tp-fp-track::-webkit-scrollbar {
    display: none; 
  }
  .tp-fp-track {
    -ms-overflow-style: none; 
    scrollbar-width: none;
  }

  .tp-slide {
    scroll-snap-align: start;
  }
  
  .tp-ctrl-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #3b3ba1;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .tp-ctrl-btn:hover {
    background: #3b3ba1;
    color: #ffffff;
  }
  .tp-prev-btn { left: -22px; }
  .tp-next-btn { right: -22px; }


  .head-scar{
    font-size: 24px;
    line-height: 32px;
  }
  .btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}





/*================ Aminities section Css start ===============*/

.grd-amenity-icon {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .grd-amenity-text {
    font-size: 18px;
  font-weight: 400;
  color: #212529;
  line-height: 23px;
  }

  .grd-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .grd-toggle-card {
    background-color: #ede9fe;
  color: #07108a;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 47px;
  transition: background-color 0.2s ease-in-out;
  margin-right: 15px;
  width: 100%;
  }

  .grd-toggle-card:hover {
    background-color: #ddd6fe;
  }

  .grd-toggle-text {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
  }
  .grd-extra-item {
    display: none; 
  }
  .grd-amenity-item img{
    margin-bottom: 10px;
  }



  /*================ Locality section Css start ===============*/


  .grd-map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2.5rem;
  }

  .grd-loc-tabs {
    border-bottom: none;
    gap: 1rem;
  }

  .grd-loc-tabs .nav-link {
    background: transparent !important;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
  }
  .grd-tab-circle {
  width: 55px;
  height: 55px;
  background-color: #07108a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;

  margin-bottom: 0.75rem;
  transition: background-color 0.3s ease;
}

  .grd-tab-label {
   font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  }
  .grd-loc-tabs .nav-link.active .grd-tab-circle {
    background-color: #e2b65d; 
    color: #000641;
  }

  .grd-loc-tabs .nav-link.active .grd-tab-label {
    color: #333; 
  }
  .grd-tab-content-area {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .grd-list-item {
    font-size: 18px;
  color: #000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  }

  .grd-list-item i {
    font-size: 1.2rem;
    color: #212529;
    margin-right: 0.5rem;
  }
  .grd-loc-tabs li{
    list-style: none;
  width: 15%;
  display: flex;
  justify-content: center;
  }


   /*================ Construction Status ===============*/



   .grd-const-card-palash,
  .grd-const-card-peepal,
  .grd-const-card-amaltas,
  .grd-const-card-extra1 {
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    height: 100%;
  }

  .grd-const-img-wrap-palash,
  .grd-const-img-wrap-peepal,
  .grd-const-img-wrap-amaltas,
  .grd-const-img-wrap-extra1 {
    height: 250px; 
    padding: 0.5rem; 
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .grd-const-img-palash,
  .grd-const-img-peepal,
  .grd-const-img-amaltas,
  .grd-const-img-extra1 {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }

  .grd-const-text-palash,
  .grd-const-text-peepal,
  .grd-const-text-amaltas,
  .grd-const-text-extra1 {
    font-size: 18px;
    color: #000000;
  }

  .grd-const-swiper-container {
    padding-bottom: 3rem; 
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    opacity: 1;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background-color: #7b9487;
  }
  .grd-const-text-peepal{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}



   /*================ Developer css Start ===============*/


 .grd-dev-logo-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
  }

  .grd-dev-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .grd-dev-brand-title {
    font-size: 25px;
  color: #000;
  font-weight: 500;
  }

  .grd-dev-stats-container {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
  }

  .grd-dev-stat-block {
    display: flex;
    flex-direction: column;
  }

  .grd-dev-stat-number {
    font-size: 20px;
    color: #000;
  }

  .grd-dev-stat-text {
    font-size: 18px;
    color: #000000; 
  }

  .grd-dev-info-icon {
    font-size: 0.9rem;
    color: #000000;
    vertical-align: middle;
  }

  .grd-dev-desc-box {
    margin-top: 1.5rem;
  }

  .grd-dev-desc-para {
    color: #000000;
    font-size: 18px;
    line-height:28px;
     font-family: "Montserrat", sans-serif;
  }

  .grd-dev-more-text {
    display: none; 
  }

  .grd-dev-read-more-link {
    color:#e2b65d; 
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
  }

  .grd-dev-read-more-link:hover {
    color: #e2b65d;
    text-decoration: underline;
  }
  .grd-dev-card-box{
    padding: 30px 20px;
  }





   /*================ Similar Projects Css Start ===============*/


   .grd-sim-img-box {
    width: 40%;
    flex-shrink: 0;
  }

  .grd-sim-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .grd-sim-content-box {
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .grd-sim-title {
    font-size:25px;
    font-weight: 500;
    color: #000000;
    line-height: 28px;
  }

  .grd-sim-builder {
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
  }

  .grd-sim-type {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: #000000;
  }

  .grd-sim-location {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: #000000;
  }

  .grd-sim-price {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
  }
  
  .grd-main-similar-section .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    margin: 5px 6px;
  }
  .grd-main-similar-section .owl-theme .owl-dots .owl-dot.active span {
    background: #7b9487;
  }





  
   /*================ FAQ's Css Start ===============*/


   .grd-faq-item {
    border: none;
    border-bottom: 1px solid #e0e0e0; 
    border-radius: 0 !important;
    background-color: transparent;
  }

  .grd-faq-button {
   font-size: 22px;
   line-height: 32px;
    color: #000000;
    background-color: transparent !important;
    padding: 1.25rem 0;
    box-shadow: none !important; 
    font-weight: 400;
  }

  .grd-faq-button:not(.collapsed) {
    color: #000000;
    font-weight: 500;
  }

  .grd-faq-body {
    padding: 0 0 1.25rem 0;
    color: #000;
    font-size:18px;
    line-height: 28px;
    font-family: "Montserrat", sans-serif;
  }

  .grd-faq-see-more-btn {
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .grd-faq-see-more-btn:hover {
    color: #000000;
    text-decoration: underline !important;
  }




   /*================ Popup Details Page Css Start ===============*/


   .modal{
    z-index: 55555555555555 !important;
   }

   .grd-popup-content {
    background-color: #e2b65d; 
    border: none;
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .grd-popup-close-btn {
    position: absolute;
    top: -15px;
    right: -4px;
    width: 35px;
    height: 35px;
    background-color: #07108a; 
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1055;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 0;
    transition: transform 0.2s;
  }

  .grd-popup-close-btn:hover {
    transform: scale(1.1);
  }

  .grd-popup-badge-box {
    background-color: #3f3baa; 
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }

  .grd-popup-badge-text {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
  }

  
  .grd-popup-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.grd-popup-icon {
        width: 52px;
    height: 52px;
    min-width: 52px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
}
  

.grd-popup-title {
    margin: 0 0 16px;
    color: #1b1b1b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    text-shadow:none;
}

  .grd-popup-input-group {
    margin-bottom: 1.5rem;
    position: relative;
  }

  .grd-popup-input,
  .grd-popup-phone-input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0);
    color: #000000;
    padding: 0.5rem 0;
    font-size: 20px;
  }

  .grd-popup-input:focus,
  .grd-popup-phone-input:focus {
    outline: none;
    border-bottom: 1px solid #000000;
    box-shadow: none;
  }

  .grd-popup-input::placeholder,
  .grd-popup-phone-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .grd-popup-phone-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(0, 0, 0);
  }

  .grd-popup-phone-code {
    color: #000641;
    font-weight: 500;
    margin-right: 1rem;
    padding-bottom: 0.5rem;
  }

  .grd-popup-phone-wrap .grd-popup-phone-input {
    border-bottom: none; 
    padding-bottom: 0.5rem;
  }
  
  .grd-popup-phone-wrap:focus-within {
    border-bottom: 1px solid #000000;
  }

  .grd-popup-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .grd-popup-checkbox {
    margin-top: 0.25rem;
  margin-right: 0.75rem;
  cursor: pointer;
  width: 35px;
  height: 19px;
  }
  
  .grd-popup-checkbox:checked {
    background-color: #000641;
  border-color: #000641;
  }

  .grd-popup-disclaimer {
    font-size: 18px;
    line-height: 26px;
    color: #000641;
  }

  .grd-popup-link {
    color: #ffffff;
    text-decoration: underline;
  }

  .grd-popup-submit-btn {
    background-color: #07108a; 
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 0.75rem;
    font-size:18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .grd-popup-submit-btn:hover {
    background-color: #07108a;
  }
  .grd-popup-input-group input::placeholder {
  color: #000000b4; 
  opacity: 1;   
}



  /* ======================================================================================================
                                    Property Details Mobile Responsive css start 
=========================================================================================================*/

 @media only screen and (min-width:0px) and (max-width: 991px){
.flex-mand {
  display: block;
  text-align: left;
}
.pricemn{
    margin-top: 30px;
    align-items: start !important;
}
.tp-gallery-item img {
  height: 120px;
}
.tp-more-photos-overlay {
  font-size: 18px;
}
.left-cone{
    justify-content: left !important;
}
.sticky-top {
  top: 68px;
}
.tp-prev-btn {
  left: 10px;
}
.tp-next-btn {
  right: 5px;
}
.pad-low{
    padding: 20px !important;
}
.grd-loc-tabs li {
  width: 25%;
}
.tp-sticky-sidebar{
    display: none;
}
 }

@media only screen and (min-width:992px) and (max-width: 3000px){
  .tp-sticky-nav {
  z-index: 55;
  }
}


 /* =========================================
     1. STICKY BOTTOM BUTTON (GLOSSY)
     ========================================= */
  .grd-sheet-sticky-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040; 
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
  }

  .grd-sheet-glossy-btn {
    width: 100%;
    border: none;
    padding:12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    background:#07108a;
    cursor: pointer;
    transition: filter 0.2s;
  }

  .grd-sheet-glossy-btn:active {
    filter: brightness(0.9);
  }

  .grd-sheet-dialog {
    display: flex;
    align-items: flex-end;
    min-height: 100%;
    margin: 0 auto;
  }

  .grd-sheet-modal.fade .grd-sheet-dialog {
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
  }

  .grd-sheet-modal.show .grd-sheet-dialog {
    transform: translateY(0);
  }

  .grd-sheet-content {
    background-color:#e2b65d; 
    border: none;
    border-radius: 0; 
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    width: 100%;
  }

  .grd-sheet-close-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #07108a; 
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1055;
    padding: 0;
  }

  .grd-sheet-title {
    color: #000641;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 1.5rem;
  }

  .grd-sheet-input-group {
    margin-bottom: 1rem;
  }

  .grd-sheet-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 4px;
    color: #000000;
    padding: 0.75rem 1rem;
    font-size: 20px;
    transition: border-color 0.2s;
  }

  .grd-sheet-input:focus {
    outline: none;
    border-color: #000000;
  }

  .grd-sheet-input::placeholder {
    color: #0000008f;
  }
.grd-sheet-phone-wrap input::placeholder{
   color: #0000008f;
}
  .grd-sheet-phone-wrap {
    display: flex;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 4px;
  }

  .grd-sheet-phone-wrap:focus-within {
    border-color: #ffffff;
  }

  .grd-sheet-phone-code {
    color: #000641;
    padding: 0.75rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background-color:rgba(255, 255, 255, 0.21);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
  }

  .grd-sheet-phone-input {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #000;
    padding: 0.75rem 1rem;
    font-size: 20px;
  }

  .grd-sheet-phone-input:focus {
    outline: none;
  }

  .grd-sheet-phone-input::placeholder {
    color: #a0a0b5;
  }

  .grd-sheet-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .grd-sheet-checkbox {
    margin-top: 0.2rem;
    margin-right: 0.75rem;
    cursor: pointer;
    width: 55px;
  }

  .grd-sheet-checkbox:checked {
    background-color: #000641;
    border-color: #000641;
  }

  .grd-sheet-disclaimer {
    color: #000641;
    font-size: 18px;
    line-height:28px;
    margin: 0;
  }

  .grd-sheet-link {
    color: #ffffff;
    text-decoration: underline;
  }

  .grd-sheet-submit-btn {
    width: 100%;
    background-color: #07108a;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    letter-spacing: 1px;
  }


  .clas-up-arrow{
    background-color: #e2b65d;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50px;
  color: #000;
  }


   /* ======================================================================================================
                                   About css start 
=========================================================================================================*/



.about-subc{
  font-size: 21px;
  line-height: 34px;
}
.main-hero-sectioncm{
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/banner-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -85px;
  padding-top: 80px;
}

.thrive-subheading {
    color: #a881db; 
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
}

.thrive-main-title {
    letter-spacing: 0.1rem;
}

.thrive-description {
    font-size: 0.95rem;
}

/* Button Styling */
.thrive-explore-btn {
    background-color: #a881db;
    border: none;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
}

.thrive-explore-btn:hover {
    background-color: #916bc2;
    color: white;
}

.thrive-collage-wrapper {
    min-height: 600px; 
}

.thrive-img-left-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 45%;
    z-index: 1;
}

.thrive-img-left-wrapper img, 
.thrive-img-right-wrapper img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

.thrive-stats-card {
   position: absolute;
  top: 0;
  right: 7%;
  width: 40%;
  z-index: 3;
  margin-bottom: 20px;

}

.thrive-img-right-wrapper {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 42%;
    z-index: 2;
}

.thrive-ratings-card {
    position: absolute;
    bottom: 50px;
    left: 10%;
    width: auto;
    z-index: 4;
}

.thrive-avatars-wrap > div {
    width: 30px;
    height: 30px;
    margin-right: -10px; 
    position: relative;
}


@media (max-width: 768px) {
    .thrive-collage-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: 100% !important;
        min-height: 100% !important;
    }
    .thrive-img-left-wrapper, 
    .thrive-stats-card, 
    .thrive-img-right-wrapper, 
    .thrive-ratings-card {
        position: static;
        width: 90%;
    }
}



/*========= 2nd section css start ========*/


.pf-section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.pf-card-secure-container,
.pf-card-instant-container,
.pf-card-global-container,
.pf-card-fees-container {
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pf-card-secure-container:hover,
.pf-card-instant-container:hover,
.pf-card-global-container:hover,
.pf-card-fees-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pf-desc-secure,
.pf-desc-instant,
.pf-desc-global,
.pf-desc-fees {
    font-size: 0.95rem;
    line-height: 1.6;
}

.pf-phone-showcase-container {
    background-color: #eff4fd;
    min-height: 500px;
    overflow: hidden; 
}


.pf-phone-image {
    max-width: 460px;
}

@media (max-width: 991px) {
    .pf-phone-showcase-container {
        min-height: 400px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}
.pf-main-section-wrapper{
  padding: 80px 0;
  background-color: #f8f9fa;
}
.subh-cont{
  font-size: 25px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 12px !important;
}
.descsubh-cont{
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
.num-box{
  background: #f8f9fa;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
}




/*========= 3rd section css start ========*/



        .rk-property-filter-sticky {
            position: sticky;
            top: 80px;
            z-index: 500;
            background-color: #fff;
            padding-bottom: 11px;
            border-bottom: 1px solid #e9ecef;
        }

        .rk-btn-filter {
            background-color: #ffffff;
  border: 1px solid #000;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 18px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
        }

        .rk-btn-filter:hover {
            background-color: #f8f9fa;
        }


        .rk-dropdown-menu {
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: none;
            padding: 10px 15px;
            min-width: 180px;
            z-index: 1050 !important;
        }
        
        .rk-dropdown-menu .form-check {
            margin-bottom: 8px;
        }
        .rk-dropdown-menu .form-check:last-child {
            margin-bottom: 0;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .rk-meta-text {
            font-size: 13px;
            color: #6c757d;
        }
        
        .rk-page-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
        }

        .rk-sort-select {
            border: 1px solid #ced4da;
            border-radius: 4px;
            padding: 4px 30px 4px 10px;
            font-size: 20px;
        }

        @media (min-width: 991px) {
            .rk-filter-offcanvas {
                position: static !important;
                visibility: visible !important;
                transform: none !important;
                width: auto !important;
                height: auto !important;
                border: none !important;
                background: transparent !important;
                transition: none !important;
                z-index: auto !important;
            }
            .rk-filter-offcanvas .offcanvas-header {
                display: none !important;
            }
            .rk-filter-offcanvas .offcanvas-body {
                padding: 0;
                overflow: visible !important;
            }
            
            .rk-filter-scroll-wrapper {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                padding: 15px 20px;
                background-color: #ffffff;
                border-bottom: 1px solid #e9ecef;
                overflow: visible; 
            }
            
            .offcanvas-backdrop { display: none !important; }
            body { overflow: auto !important; padding-right: 0 !important; }
        }

        @media (max-width: 991px) {
            .rk-filter-scroll-wrapper {
                display: inline-grid;
                gap: 12px;
                width: 100%;
            }
            
            .rk-btn-filter {
                width: 100%;
                justify-content: space-between;
                padding: 10px 15px;
                border: 1px solid #fff;
            }
            
            .rk-dropdown-menu {
                position: static !important; 
                transform: none !important;
                width: 100%;
                box-shadow: none;
                border: 1px solid #e9ecef;
                background-color: #f8f9fa;
                margin-top: 5px !important;
            }
            .rk-mobile-title-row {
                flex-direction: column;
                align-items: flex-start !important;
            }
        }
        .form-select option{
          font-size: 16px;
        }



/* ======================================================================================================
                                   property css start 
=========================================================================================================*/


.rk-mainprop{
  margin: 50px 0;
}


.rk-property-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  height: 100%;
}

.rk-img-col {
  position: relative;
  min-height: 220px;
}

.rk-carousel-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.rk-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 12px 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}



.rk-overlay-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  padding: 7px 13px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 10;
}

.rk-overlay-verified {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  color: #333;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rk-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 10;
  cursor: pointer;
}

.rk-carousel-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important; 
}

.carousel-control-prev:hover .rk-carousel-btn,
.carousel-control-next:hover .rk-carousel-btn {
  background: rgba(255, 255, 255, 1);
}

.rk-title {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.rk-subtitle {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}

.rk-pill-new {
  background-color: #f1f5f9;
  color: #475569;
  font-weight: 500;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.rk-stats-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.rk-stat-col {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #eaeaea;
}
.rk-stat-col:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.rk-stat-label {
  font-size:18px;
  color: #666;
  margin-bottom: 2px;
  white-space: nowrap;
}
.rk-stat-value {
  font-size: 20px;
  color: #111;
  margin: 0;
  white-space: nowrap;
}

.rk-meta-line {
  font-size: 18px;
  color: #000;
}
.rk-highlights {
  font-size: 18px;
  color: #000;
  line-height: 26px;
}

.rk-btn-heart {
  background-color: #f8f9fa;
  border: 1px solid #f1f3f5;
  color: #495057;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.rk-btn-heart:hover {
  background-color: #e9ecef;
  color: #dc3545;
}

.rk-btn-contact {
  background-color: #6328e0;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  flex-grow: 1;
  max-width: 140px;
}
.rk-btn-contact:hover {
  background-color: #531fc4;
  color: #fff;
}

@media (max-width: 767.98px) {
  .rk-img-col {
    min-height: 200px;
  }
  .rk-stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .rk-stat-col {
    border-right: none;
    padding-right: 0;
    margin-right: 10px;
  }
}



.rk-stats-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.rk-stats-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex-wrap: nowrap; 
    width: 100%;
}

.rk-stats-scroll-container::-webkit-scrollbar {
    display: none;
}
.rk-stats-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.rk-stats-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 5;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.rk-stats-btn:hover {
    background: #f8f9fa;
    color: #6328e0; 
}

.rk-stats-btn-left { left: -10px; }
.rk-stats-btn-right { right: -10px; }

.offcanvas-start {
  width: 335px;
  height: 93%;
}


/* ======================================================================================================
                                   Contact css start 
=========================================================================================================*/



.nq-contact-section {
            padding: 60px 0;
            color: #333;
            overflow: hidden;
        }

        .nq-heading-main {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .nq-subheading {
            color: #000000;
            max-width: 900px;
            margin: 0 auto 3rem;
            font-size: 18px;
            line-height: 28px;
            font-family: "Montserrat", sans-serif;
        }

        .nq-form-container {
            background-color: #eee; 
            padding: 2.5rem;
            border-radius: 2px;
        }

        .nq-form-label {
            font-size: 20px;
  color: #000;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: block;
            letter-spacing: 0.5px;
        }

        .nq-form-control {
            border-radius: 2px;
            border: 1px solid #e0e0e0;
            padding: 0.7rem 1rem;
            font-size: 18px;
            background-color: #ffffff;
        }

        .nq-form-control:focus {
            box-shadow: none;
            border-color: #b59b8a;
            outline: none;
        }

        textarea.nq-form-control {
            resize: vertical;
            min-height: 120px;
        }

       

        .nq-info-title {
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .nq-info-block {
            margin-bottom: 1.5rem;
        }

        .nq-info-label {
            font-weight: 500;
  color: #222;
  margin-bottom: 0.3rem;
  font-size: 24px;
        }

        .nq-info-text {
            color: #000;
  font-size: 18px;
  line-height: 28px;
            margin: 0;
            font-family: "Montserrat", sans-serif;
        }

        .nq-social-links a {
            color: #222;
            font-size: 1.2rem;
            margin-right: 1.2rem;
            transition: color 0.3s;
            text-decoration: none;
        }

        .nq-social-links a:hover {
            color: #b59b8a;
        }

        .nq-map-container {
            margin-top: 4rem;
        }

        .nq-map-iframe {
            width: 100%;
            height: 350px;
            border: 0;
            display: block;
        }





/* ======================================================================================================
                                   Property, Contact, About Responsive css start 
=========================================================================================================*/

@media only screen and (min-width:0px) and (max-width: 992px){
.headbg-prop{
  background-color: #07108a;
}
.rk-filter-offcanvas .offcanvas-title {
  margin-bottom: 0;
  line-height: 28px;
  color: #fff;
  font-size: 18px;
}

.rk-filter-offcanvas .offcanvas-header .btn-close{
  background-color: #fff;
  font-size: 12px;
  opacity: 1;
  margin-right: 0px;
}
.rk-property-filter-sticky {
  top: 67px;
}
.da-hero-sectioncm {
  min-height: 14vh;
}
.rk-dropdown-menu  label{
  color: #000;
}
.rest-f{
  text-align: right;
}
.active-purple-mn{
  color: #07108a;
}
.rk-mainprop {
  margin: 20px 0;
}
.rk-sort-select {
  padding: 4px 6px 4px 10px;
  font-size: 16px;
}
.main-hero-sectioncm{
  height: 30vh;
  margin-top: -95px;
  padding-top: 80px;
}
.da-hero-titlecm {
  font-size: 40px;
  margin-bottom: 0px;
}
.about-subc {
  font-size: 18px;
  line-height: 28px;
}
.thrive-img-left-wrapper img, .thrive-img-right-wrapper img {
  height: 200px;
}
.thrive-stats-card{
  display: none;
}
.thrive-about-container{
  margin: 0 !important;
}
.pf-phone-showcase-container{
  padding-top: 0 !important;
}
.acct-stat-box p{
  font-size: 18px;
}
.thumb-title {
  font-size: 16px;
}
.acct-img-item {
  height: 190px;
}
.num-box{
  padding: 15px 10px !important;
}
.grd-popup-checkbox {
  width: 56px;
}
.da-top-header{
  display: none;
}
}







/* ======================================================================================================
                                   Privacy Policy css start 
=========================================================================================================*/

.policy-wrap p {
    margin: 0 0 14px;
  }
 
  .policy-wrap h2 {
    font-weight: 500;
    font-weight: 500;
    margin: 28px 0 10px;
    color: #111;
  }
 
  .policy-wrap ul {
    margin: 6px 0 14px 0;
    padding-left: 28px;
  }
 
  .policy-wrap ul li {
    margin-bottom: 6px;
    list-style: disc;
  }
 
  .policy-wrap a {
    color: #1a6bba;
    text-decoration: none;
  }
 
  .policy-wrap a:hover {
    text-decoration: underline;
  }
 
  .policy-wrap strong {
    font-weight: 500;
  }
 
  #opt_out_user {
    color: #ffffff;
    background-color: #358efb;
    border-color: #2183fb;
    outline: none;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 2px 12px;
    cursor: pointer;
    font-size: 14px;
  }
 
  #opt_out_success {
    margin-left: 20px;
    display: none;
  }
 
  #success-icon-wrap {
    display: inline-block;
    margin-right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: green;
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    vertical-align: middle;
  }

  .pp-all{
    padding: 70px 0;
  }




        .digiacres-tos-container h2 {
            margin-top: 40px;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .digiacres-tos-container h3, 
        .digiacres-tos-container h4 {
            color: #1e293b;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .digiacres-tos-container p{
           margin-bottom: 15px;
        } 
        .digiacres-tos-container li {
            margin-bottom: 15px;
            list-style: disc;
        }

        .digiacres-tos-container a {
            color: #2563eb;
            text-decoration: none;
        }

        .digiacres-tos-container a:hover {
            text-decoration: underline;
        }

        .digiacres-tos-container ul, 
        .digiacres-tos-container ol {
            padding-left: 25px;
            margin-bottom: 20px;
        }

        .digiacres-tos-container table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .digiacres-tos-container table td, 
        .digiacres-tos-container table th {
            border: 1px solid #ddd;
            padding: 10px;
        }
        .digiacres-tos-container strong{
            font-weight: 600 !important;
        }

        @media(max-width: 768px) {
            .digiacres-tos-container {
                padding: 20px;
                margin: 15px;
            }
            .digiacres-tos-container h1 {
                font-size: 28px;
            }
            .da-trust-wrapper{
                overflow: hidden;
            }
            .card-info h6 {
    font-size: 20px;
    line-height: 30px;
            }
        }
        
  .img-bannercommon {
  background-image: url(../images/bg-ty.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
}
.morebtn-main:hover{
    color: #000;
}


@media only screen and (min-width:991px) and (max-width: 3000px){
    .align-rtoc{
         display: flex;
    justify-content: end;
    }
   
}







.tp-portfolio-focus {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Cards */
.tp-portfolio-card {
    position: relative;
    height: 100%;
    min-height: 350px;
    padding: 38px 38px 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    border-radius: 15px;
}

.tp-portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(162, 123, 69, 0.35);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

/* Large background number */
.tp-portfolio-number {
    position: absolute;
    top: 12px;
    right: 25px;
    color: rgba(0, 0, 0, 0.045);
    font-size:75px;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

/* Icon */
.tp-portfolio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 45px;
    color: #000;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.tp-portfolio-icon svg {
    width: 29px;
    height: 29px;
}

.tp-portfolio-card:hover .tp-portfolio-icon {
    color: #ffffff;
    background: #e2b65d;
    transform: rotate(-5deg);
}

/* Card Content */
.tp-portfolio-content {
    position: relative;
    z-index: 2;
}

.tp-portfolio-content h3 {
    margin: 0 0 16px;
    color: #1b1b1b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.tp-portfolio-content p {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}
.tp-portfolio-icon i{
    font-size: 28px;
}


/* Responsive */
@media (max-width: 991.98px) {
    .tp-portfolio-focus {
        padding: 80px 0;
    }

    .tp-portfolio-heading {
        margin-bottom: 45px;
    }

    .tp-portfolio-card {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .tp-portfolio-focus {
        padding: 65px 0;
    }

    .tp-portfolio-heading {
        margin-bottom: 35px;
    }

    .tp-portfolio-heading h2 {
        font-size: 36px;
    }

    .tp-portfolio-heading p {
        font-size: 14px;
    }

    .tp-portfolio-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .tp-portfolio-icon {
        margin-bottom: 35px;
    }

    .tp-portfolio-content h3 {
        font-size: 27px;
    }

    .tp-portfolio-number {
        font-size: 80px;
    }
}