@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Roboto+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');


body {

    text-decoration: none;
    list-style: none;
    overflow-x: hidden;
    font-family: Montserrat;
}

/* header started */
.logo img {
    height: 75px;
    width: 410px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(0, 0, 0);
}

/* Navbar links styling when transparent */
.navbar-nav .nav-link {
    color: black;
    font-size: 14px;
    font-weight: 600;
}

/* Navbar links styling when fixed */
.fixed-header .navbar-nav .nav-link {
    color: rgb(0, 0, 0) !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 25px;

}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(0, 0, 0);
}

.list ul li {
    margin-right: 20px;
    cursor: pointer;
}

#site-header {
    position: fixed;
    z-index: 10;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    padding: 0px 0;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leftcss {
    padding-right: 150px !important;
}

.headside {
    padding-left: 40px;
    padding-right: 40px;
}

.btn-outline-info {
    color: white;
    border-color: #003366;
    background-color: #003366;
}

/* sldier section css  */
.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    top: 55%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.search-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: -90px;
    position: relative;
}

.carousel-item img {
    height: 530px;
}

.property-section {
    text-align: center;
    padding: 50px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #C4C6CF;
    max-width: 100px;
    margin: 0 15px;
}

.nav-tabs {
    border-bottom: 0px solid #ddd;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: 1px solid #C4C6CF;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    background: white;
    border-radius: 0px;
    transition: 0.3s;
}

.nav-tabs .nav-link.active {
    background: #003366;
    color: white;
    border: 1px solid #C4C6CF;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card .card-body {
    padding: 15px;
    text-align: left;
}

.property-card .price {
    font-size: 22px;
    padding-bottom: 5px;
    font-weight: bold;
}

.property-card .btn-info {
    width: 100%;
    margin-top: 10px;
}

.view-all-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #003366;
    background: white;
    color: #003366;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #003366;
    color: white;
}

.btn-info {
    color: white;
    background-color: #4FB2B3;
    border-color: #4FB2B3;
}

.property-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgb(255 255 255 / 90%);
    color: #000000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

/* footer start  */
.footer {
    background: #21252a;
    color: white;
    padding: 40px 0;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: #b0b3ba;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #b0b3ba;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.latest-properties img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.latest-properties .property-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.latest-properties p {
    margin: 0;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #007bff;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #b0b3ba;
    padding-top: 15px;
    border-top: 1px solid #2a2d36;
    margin-top: 20px;
}

/* footer end  */

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.property-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.property-card:hover img {
    transform: scale(1.1);
}

.property-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 75px 10px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.property-card .property-count {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.property-card:hover .property-count {
    opacity: 1;
}

.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.pagination a:hover,
.pagination .active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.real-estate-section {
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.image-col {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-col img {
    width: 65%;
    margin-top: 70px;
    margin-left: 110px;
    height: 414px;
    object-fit: cover;
    border-radius: 10px;
}

.text-col {
    padding-left: 30px;
}

.text-col h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #003366;
}

.btn-group {
    margin-top: 20px;
}

.btn-group a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.btn-primary {
    background-color: #003366;
    color: white;
    border: none;
}

.newbtns .btn-primary {
    background-color: #a1a1a152;
    color: #003366;
    border: none;
    font-size: 15px;
    font-weight: bold;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #003366;
    border: 1px solid #003366;
}

.fade-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

.articleses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articleses-header h2 {
    font-size: 24px;
    font-weight: bold;
}

.articleses-header a {
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #003366;
    color: #5a59b0;
    border-radius: 5px;
    transition: background 0.3s;
}

.articleses-header a:hover {
    background: #003366;
    color: white;
}

.articleses-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    transition: border-bottom 0.3s ease-in-out;
}

.articleses-item:last-child {
    border-bottom: none;
}

.articleses-item:hover {
    border-bottom: 2px solid #007bff;
}

.articleses-item h3 {
    font-size: 18px;
    font-weight: bold;
}

.articleses-item p {
    font-size: 14px;
    color: #555;
}

.articleses-item a {
    text-decoration: none;
    color: #007bff;
}

.fadees-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadees-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visibles {
    opacity: 1;
    transform: translateX(0);
}

.price p {
    font-size: 18px;
}

.real-estate-vission-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.animate-vission-left,
.animate-vission-right {
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.animate-vission-left {
    transform: translateX(-50px);
}

.animate-vission-right {
    transform: translateX(50px);
}

.show-vission {
    opacity: 1;
    transform: translateX(0);
}

.real-estate-vission-section img {
    width: 100%;
    height: auto;
}

.card {
    border: 1px solid #ddd;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

/* Count Badge Styling */
.count-badge {
    position: absolute;
    top: -12px;
    left: 15%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    background: white;
    z-index: 10;
}

.count-badge::before,
.count-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: lightgray;
}

.card:hover {
    transform: translateY(-5px);
}

.count-badge::before {
    left: -35px;
}

.count-badge::after {
    right: -35px;
}

/* Animation Styling */
.animate-service-right,
.animate-service-left {
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

.animate-service-right {
    transform: translateX(50px);
}

.animate-service-left {
    transform: translateX(-50px);
}

.show-service {
    opacity: 1;
    transform: translateX(0);
}

.about-banner {
    background: url('../images/aboutbanner.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.content {
    position: relative;
    z-index: 2;
}

.content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.breadcrumb {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb span {
    margin: 0 5px;
}

.breadcrumb .current {
    color: #ccc;
}

.image-col img {
    position: relative;
    border-radius: 0px;
}

.main-image {
    width: 100%;
    display: block;
}

.small-image-container {
    position: absolute;
    bottom: 20px;
    right: -3px;
    border: 3px solid white;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80px;
    height: 80px;
}

.small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-us {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    /* display: inline-block; */
}

.section-title::before,
.section-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #333;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.icon-container {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.icon-container.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-top {
    transform: translateY(-50px);
}

.animate-bottom {
    transform: translateY(50px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 30px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.icon-box:hover {
    background: #333;
    color: white;
    transform: translateY(-5px);
}

.icon-name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}

.property-tag2 {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 25px;
    font-weight: bold;
    border-radius: 3px;
}

.heart-icon.active {
    color: red;
}

/* Popup Overlay */
.contactinfo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Box */
.detailinfo-contactinfo-popup {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    padding-top: 10px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Popup Box */
.contactinfo-popup {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.contactinfo-detail a{
    text-decoration: none;
}

/* Close Button */
.closeinfo-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Profile Image */
.contactinfo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
}

/* Contact Details */
.contactinfo-title {
    margin-bottom: 10px;
    font-size: 22px;
}

.contactinfo-name {
    font-size: 25px;
    font-weight: bold;
}

.contactinfo-detail {
    font-size: 20px;
    margin: 5px 0;
}

.contactinfo-detail i {
    color: #17a2b8;
    margin-right: 8px;
}

.contactinfo-popup .fa {
    font-size: 22px;
    padding: 10px 10px;
}

.contactinfo-popup h1 {
    font-size: 30px;
    font-weight: bold;
}

.property-card a {
    text-decoration: none;
    color: black;
}

.breadcrumb2 {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Spacing between items */
    padding: 10px;
    background-color: #f0f0f0;
    /* Light gray background */
    border-radius: 5px;
    /* Optional: Adds rounded corners */
}

.breadcrumb2 a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

.breadcrumb2 span {
    color: #777;
    /* Gray color for the separator */
}

.breadcrumb2 .current {
    font-weight: bold;
    color: #333;
}

.filter-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.listingpage .nav-tabs {
    border-bottom: 0px solid #ddd;
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
}

.listingpage .nav-tabs .nav-link {
    border: 1px solid #C4C6CF;
    padding: 4px 25px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    background: white;
    border-radius: 0px;
    transition: 0.3s;
}

.listingpage .nav-tabs .nav-link.active {
    background: #003366;
    color: white;
    border: 1px solid #C4C6CF;
}

.price-dropdown {
    background: white;
    border: 1px solid black;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    z-index: 1;
}


/* Price Button */
.priceupbtn {
    text-align: end;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

/* Popup Styles */
.popupup-overlay {
    position: fixed;
    top: 15%;
    left: 20%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popupup {
    background: white;
    width: 500px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Smooth shadow */
}

.popupup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popupup-header h2 {
    font-size: 20px;
}

.closeup-btn {
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: none;
}

/* Popup Content with Border */
.popupup-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.filterup-section {
    width: 48%;
    padding-right: 15px;
    border-right: 2px solid #ddd;
    /* Light gray border */
}

.filterup-section:last-child {
    border-right: none;
    /* Removes border from last section */
}

.filterup-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.filterup-group {
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.inputup-group {
    display: flex;
    justify-content: space-between;
}

.inputup-group input {
    width: 48%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popupup-footer {
    text-align: center;
    margin-top: 20px;
}

.applyup-btn {
    background: #002855;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.clearup-btn {
    margin-left: 15px;
    font-size: 14px;
    color: #002855;
    cursor: pointer;
    text-decoration: underline;
}

/* Show popup */
.popupup-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.de-product-detail {
    text-align: center;
}

/* Main Display */
.de-main-display img,
.de-main-display video {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Small Images & Video */
.swiper {
    margin-top: 10px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

.swiper-slide img,
.swiper-slide video {
    width: 100%;
    max-width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.swiper-slide.active img,
.swiper-slide.active video {
    border-color: #4FB2B3 !important;
}

/* Swiper Navigation Buttons */
.de-swiper-button {
    color: black !important;
    font-size: 24px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.de-swiper-button::after {
    font-size: 24px !important;
}

.de-swiper-button:hover {
    background: rgba(0, 0, 0, 0.3);
}

.specialdiv {
    margin-top: 0px;
}

.alert-section {
    border: 2px solid #d3d3d3;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    max-width: 1384px;
    margin: 20px auto;
}

.alert-text {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.alert-button {
    background-color: #002F6C;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.alert-button:hover {
    background-color: #001A3D;
}

/* Score Circle */
.score-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-svg {
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: 0;
}

.score-circle-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 1;
}

.score-circle-progress {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease-in-out;
}

.score-content {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.score-content i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.mapcss iframe {
    height: 700px;
    width: 550px;
}

/* Animation for sliding in from the left */
@keyframes term-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply the animation */
.term-animate-left {
    animation: term-slideInLeft 1s ease-out;
}

/* Additional Styling for Terms Section */
.term-section {
    padding: 40px 0;
}

.term-title {
    font-size: 20px;
    font-weight: bold;
}

.term-block {
    margin-bottom: 15px;
}

.term-list {
    padding-left: 20px;
}

/* Contact Form Styling */
.term-contact-form {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Floating Placeholder Effect */
.term-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Style for the Floating Effect */
.term-input::placeholder {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    color: #999;
}

/* When Input is Focused */
.term-input:focus::placeholder,
.term-input:not(:placeholder-shown)::placeholder {
    top: 5px;
    left: 10px;
    font-size: 12px;
    color: #007bff;
}

/* Submit Button Centered */
.term-submit-btn {
    background-color: #007bff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.term-submit-btn:hover {
    background-color: #0056b3;
}

.custom-modal-width {
    max-width: 600px;
    /* Increased modal width */
}

.social-icon img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
    justify-content: center;
}

.toggle-password {
    cursor: pointer;
    right: 15px;
}

.input-group .form-control {
    padding-right: 45px;
}

.modal-dialog {
    max-width: 600px;
    /* Adjust width */
}

.form-floating label {
    font-size: 14px;
}

.mobilebtn {
    display: none;
}

.mobilebtn2 {
    display: block;
}

.extrapadding {
    margin-top: 0px;
}

.price2 {
    font-size: 16px;
}

.price3 {
    font-size: 16px;
}

.price4 {
    font-size: 16px;
}

@media (max-width: 768px) {
    .real-estate-section {
        flex-direction: column;
        text-align: center;
    }

    .price p {
        font-size: 12px;
    }

    .text-col {
        padding-left: 0;
        margin-top: 20px;
    }

    .carousel-caption {
        position: absolute;
        top: 50%;
        left: 14%;
        transform: translateY(-50%);
        text-align: left;
        max-width: 600px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .property-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: transform 0.3sease-in-out;
    }

    .breadcrumb {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        padding: -2px 20px !important;
        border-radius: 5px;
    }

    .property-tag2 {
        position: absolute;
        top: 6px;
        right: 5px;
        color: #ffffff;
        padding: 5px 10px;
        font-size: 22px;
        font-weight: bold;
        border-radius: 3px;
    }

    .de-main-display img,
    .de-main-display video {
        max-height: 300px;
    }

    .swiper-slide img,
    .swiper-slide video {
        max-width: 60px;
        height: 60px;
    }

    .hidemobile {
        display: none;
    }

    .specialdiv {
        margin-top: 30px;
    }

    .alert-section {
        flex-direction: column;
        text-align: center;
    }

    .alert-button {
        margin-top: 10px;
        width: 100%;
    }

    .mapcss iframe {
        height: 400px;
        width: 388px;
    }

    .btn-outline-info {
        color: white;
        border-color: #003366;
        background-color: #003366;
        font-size: 14px;
    }

    .headside {
        padding-left: 10px;
        padding-right: 0px;
    }

    .mobilebtn {
        display: block;
    }

    .mobilebtn2 {
        display: none;
    }

    .btn-group a {
        text-decoration: none;
        padding: 5px 8px;
        border-radius: 5px;
        margin-right: 10px;
        display: inline-block;
    }

    .articleses-item {
        padding: 16px 15px;
        border-bottom: 1px solid #ddd;
        transition: border-bottom 0.3sease-in-out;
    }

    .popupup-overlay {
        position: fixed;
        top: 60px;
        left: 3px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3sease-in-out, visibility 0.3sease-in-out;
    }

    .extrapadding {
        margin-top: 30px;
    }

    .price2 {
        font-size: 12px;
    }

    .price3 {
        font-size: 12px;
    }

    .price4 {
        font-size: 9px;
    }

    .listingpage .nav-tabs {
        border-bottom: 0px solid #ddd;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    .image-col img {
    width: 65%;
    margin-top: 30px;
    margin-left: 60px;
    height: 414px;
    object-fit: cover;
    border-radius: 10px;
}
}

@media (max-width: 600px) {
    .popupup {
        width: 90%;
        padding: 15px;
    }

    .popupup-content {
        flex-direction: column;
        gap: 10px;
    }

    .filterup-section {
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
    }

    .filterup-section:last-child {
        border-bottom: none;
    }

    .applyup-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .property-tag2 {
        position: absolute;
        top: 6px;
        right: 5px;
        color: #ffffff;
        padding: 5px 10px;
        font-size: 22px;
        font-weight: bold;
        border-radius: 3px;
    }

    .hidemobile {
        display: none;
    }

    .mapcss iframe {
        height: 400px;
        width: 388px;
    }

}

/* modal form pop ups  */
/* Modal box */
.lates-modal {
  border-radius: 8px;
  padding: 40px 30px;
  position: relative;
}

/* Close button */
.lates-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

/* Title */
.lates-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Social icons */
.lates-social a {
  margin: 0 8px;
  display: inline-block;
}
.lates-social img {
  width: 35px;
  height: 35px;
}

/* Divider */
.lates-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.lates-divider span {
  flex: 1;
  height: 1px;
  background: #ccc;
}
.lates-divider p {
  margin: 0 15px;
  color: #555;
  font-size: 14px;
}

/* Inputs */
.lates-input {
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
}

/* Toggle password */
.lates-toggle {
  cursor: pointer;
  border: none;
}

/* Sign In button (centered, smaller width) */
.lates-btn {
  background-color: #002d5b;
  color: #fff;
  padding: 10px 40px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
}
.lates-btn:hover {
  background-color: #004080;
}

/* Footer */
.lates-footer p {
  font-size: 14px;
  margin-top: 15px;
}
.lates-footer a {
  text-decoration: none;
  color: #002d5b;
  font-weight: 500;
}
.lates-footer a:hover {
  text-decoration: underline;
}
/* Password input wrapper */
.lates-password-wrapper {
  position: relative;
  width: 100%;
}

/* Input */
.lates-input {
  border-radius: 4px;
  padding: 10px 40px 10px 12px; /* extra right padding for eye */
  font-size: 14px;
  width: 100%;
}

/* Eye icon inside input */
.lates-eye {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}
.lates-eye:hover {
  color: #000;
}

.imageset{
   margin-top:50px;
}
