
.mobile-only {
display: none;
}

@media (max-width: 767px) {

.mobile-only {
display: block;
}


}

@media (max-width: 767px) {

.hide-mobile {
display: none !important;
}


}

/* Mobile scrollable tabs */
/* Horizontal scroll tabs for mobile */
#nav-tab2 {
flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
}

#nav-tab2 .nav-link {
flex: 0 0 auto;
  white-space: nowrap;
}

/* Optional: hide scrollbar */
#nav-tab2::-webkit-scrollbar {
display: none;
}

.search-title {
font-size: clamp(22px, 4vw, 38px);
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.15;
}

.search-subtitle {
font-size: clamp(15px, 2.2vw, 18px);
    color: #fff;
    line-height: 1.4;
}

.highlight-point {
font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
}

.highlight-price {
font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.area-name {
font-size: clamp(15px, 2.2vw, 18px);
    font-weight: 500;
}

.city-name {
font-weight: 500;
    color: #6b7280;
}

/* Container for Tabs */
.price-tab-container {
width: 100%;
    max-width: auto;
    margin: 0 auto;
}

/* Style for Tabs */
.price-tabs {
display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.price-tab {
flex: 1;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #E96E28; /* Updated border color */
    font-size: 25px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0px;
    margin-right: 10px; /* Added space between tabs */
}

/* Remove margin from the last tab */
.price-tab:last-child {
margin-right: 0;
}

.price-tab:hover {
background-color: #ddd;
}

.price-tab.active {
background-color: #E96E28; /* Updated active tab background color */
    color: white;
}

/* Tab Content */
.price-tab-content {
display: none;
}

.price-tab-content.active {
display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

/* Two-column layout for Buy Price and Rent Price */
.price-tabs-prices {
display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.price-column {
width: 48%; /* Make two columns with space between them */
    font-size: 18px;
    text-align: left;
    margin-top: 20px;
}

/* Make it Responsive */
@media (max-width: 600px) {
.price-tabs {
        flex-direction: column;
    }

    .price-tab {
        font-size: 14px;
        padding: 15px;
        margin-right: 0;
        margin-bottom: 10px; /* Added space between tabs when stacked */
    }

    .price-tabs-prices {
        flex-direction: column;
        align-items: center;
    }

    .price-column {
        width: 100%; /* Stack columns on small screens */
        margin-bottom: 10px; /* Add space between the columns */
        text-align: center;
    }
}

.policy-win {
position: fixed;
    bottom: 20px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.policy-win.show {
right: 20px;
}

.policy-win .data {
margin-top: 16px;
}

.policy-win .data p {
color: #333;
    font-size: 16px;
}

.data p a {
color: #E96E28;
    text-decoration: none;
}

.data p a:hover {
text-decoration: underline;
}

.policy-win .buttons {
margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #E96E28;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
background-color: #000;
}

#declineBtn {
border: 2px solid #E96E28;
    background-color: #fff;
    color: #E96E28;
}

#declineBtn:hover {
background-color: #E96E28;
    color: #fff;
}

@media (max-width: 480px) {

.policy-win {
max-width: 90%;
}


}

.ppc-container {
max-width: 100%;
    margin: auto;
    font-family: Arial, sans-serif;
    padding: 20px;
    border: 1px solid #ddd;
}

.ppc-input {
width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.ppc-button {
width: 100%;
    background-color: #E96E28;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.ppc-note {
margin-top: 15px;
    font-size: 14px;
    color: gray;
}

.ppc-disclaimer {
margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.ppc-result {
margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #E96E28;
}

.jantri-calculator {
max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
}

.jantri-calculator h2 {
color: #E96E28;
    text-align: center;
    margin-bottom: 20px;
}

.jantri-calculator label {
display: block;
    margin-top: 12px;
    font-size: 14px;
}

.jantri-calculator input,
.jantri-calculator select {
width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.jantri-calculator button {
margin-top: 20px;
    width: 100%;
    background-color: #E96E28;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jantri-calculator button:hover {
background-color: #ccc;
}

.jantri-result {
margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #E96E28;
}

.jantri-note {
margin-top: 10px;
    font-size: 14px;
    color: #555;
    white-space: pre-line;
}

.jantri-disclaimer {
margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Micro-animations */
@keyframes pulseGlow {
0% {
        box-shadow: 0 0 0 0 rgba(207, 112, 65, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(207, 112, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207, 112, 65, 0);
    }
}

/* Interactive Tabs for Best Investment Zones */
.investment-tabs {
display: inline-flex;
    background: #ffffff;
    border-radius: 30px;
    padding: 6px;
    gap: 4px;
    margin: 0 auto 35px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    max-width: 100%;
}

.investment-tab-btn {
border: none;
    background: transparent;
    font-size: 14.5px;
    font-weight: 400 !important; /* Normal text not bold */
    color: #64748b;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.investment-tab-btn:focus {
outline: none;
}

.investment-tab-btn:hover {
color: #E96E28;
    background: rgba(207, 112, 65, 0.04);
}

.investment-tab-btn.active {
background: #E96E28;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(207, 112, 65, 0.25);
}

.investment-tab-btn.active:hover {
background: #E96E28;
    color: #ffffff !important;
}

.investment-tab-content {
display: none;
    animation: fadeInSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes fadeInSlideUp {

from {
opacity: 0;
        transform: translateY(15px);
}

to {
opacity: 1;
        transform: translateY(0);
}


}

/* Premium Liveness Redesign: Equal-width Responsive Grid & Monogram Badge System */
.investment-zones-grid {
display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1400px) {

.investment-zones-grid {
grid-template-columns: repeat(4, 1fr);
}


}

@media (max-width: 1100px) {

.investment-zones-grid {
grid-template-columns: repeat(3, 1fr);
}


}

@media (max-width: 768px) {

.investment-zones-grid {
grid-template-columns: repeat(2, 1fr);
        gap: 15px;
}


}

@media (max-width: 480px) {

.investment-zones-grid {
grid-template-columns: 1fr;
        gap: 12px;
}


}

.area-investment-card {
background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.area-investment-card:hover {
transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(207, 112, 65, 0.12);
    border-color: rgba(207, 112, 65, 0.25);
}

/* Premium Monogram Logo / Badge Container */
.area-logo-square {
width: 48px;
    height: 48px;
    border-radius: 8px !important; /* Square with standard modern slight roundness */
    border: 1px solid rgba(207, 112, 65, 0.12);
    background: rgba(207, 112, 65, 0.05); /* 5% accent opacity background */
    color: #E96E28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500 !important; /* Medium weight but not bold */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* If a raw image is passed,
render it perfectly cropped */
img.area-logo-square {
object-fit: cover;
    padding: 0;
    background: #ffffff;
}

.area-investment-card:hover .area-logo-square {
background: #E96E28;
    color: #ffffff;
    border-color: #E96E28;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(207, 112, 65, 0.15);
}

.area-title {
font-size: 16px !important;
    font-weight: 500 !important; /* Medium weight for beautiful hierarchy */
    color: #0f172a !important; /* Elegant slate dark */
    margin-bottom: 2px !important;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.area-rate {
font-size: 13.5px !important;
    font-weight: 500 !important; /* Elegant medium weight */
    color: #E96E28 !important;
    display: block;
}

/* Sleek growth trend badge */
.growth-badge {
font-size: 11.5px !important;
    font-weight: 500 !important; /* Medium weight */
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.3s ease;
}

.growth-badge.positive {
background: rgba(34, 197, 94, 0.08) !important; /* 8% opacity modern green */
    color: #16a34a !important;
}

.growth-badge i {
font-size: 10px;
}

.score-bar-container {
margin-top: 15px;
}

.score-label {
font-size: 11.5px !important;
    font-weight: 300 !important; /* Light weight for high contrast */
    color: #64748b !important;
}

.score-value {
font-size: 12px !important;
    font-weight: 500 !important; /* Medium weight */
    color: #E96E28 !important;
}

.score-bar-bg {
background: #f1f5f9;
    border-radius: 8px;
    height: 6px;
    overflow: hidden;
    position: relative;
    margin-top: 6px;
}

.score-bar-fill {
background: linear-gradient(90deg, #E96E28, #e88d63); /* Accent to soft-accent gradient */
    height: 100%;
    border-radius: 8px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(207, 112, 65, 0.2);
}

.area-investment-card:hover .score-bar-fill {
filter: brightness(1.05);
    box-shadow: 0 0 8px rgba(207, 112, 65, 0.35);
}

/* Premium Override for About Us Banner Container */
.cta-banner.bgc-light-yellow {
background: linear-gradient(135deg, #fdfbf7 0%, #f7f3e8 100%) !important;
    border: 1px solid rgba(207, 112, 65, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02) !important;
}

/* Premium Continuous Marquee Ticker Pattern */
.popular-marquee-container {
overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    margin-top: 15px;
    /* Frosted edge glass fade masking */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.popular-marquee-track {
display: flex;
    width: max-content;
    gap: 15px;
    animation: marquee-scroll 24s linear infinite;
}

.popular-marquee-group {
display: flex;
    gap: 15px;
    align-items: center;
}

/* Pause scroll animation on user hover for ultimate usability */
.popular-marquee-container:hover .popular-marquee-track {
animation-play-state: paused;
}

.popular-marquee-group a {
display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(233, 110, 40, 0.15) !important;
    background: rgba(233, 110, 40, 0.05) !important;
    color: #E96E28 !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    border-radius: 60px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
    text-decoration: none;
}

.popular-marquee-group a:hover {
background: #E96E28 !important;
    color: #ffffff !important;
    border-color: #E96E28 !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 4px 15px rgba(233, 110, 40, 0.25) !important;
}

@keyframes marquee-scroll {

0% {
transform: translateX(0);
}

100% {
transform: translateX(-50%);
}


}


