:root {
    --color-bg: #ffffff;
    /* Keep white background */
    --color-text: #0c4256;
    /* Use main color for primary text */
    --color-primary: #0c4256;
    /* Main primary color */
    --color-primary-dark: #072a36;
    /* Darker shade of primary */
    --color-muted: #68838d;
    /* Muted tone based on main color */
    --color-border: #b7c5ca;
    /* Soft border color derived from main */
    --color-light: #e8f1f4;
    /* Light tint of main color */
    --color-link: #108ab6;
    /* Bright blueish accent from main color scheme */
    --color-danger: #c0392b;
    /* Adjusted for aesthetic balance (optional) */
    --color-success-bg: #d0e6ec;
    /* Light background success tint using main palette */
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
}

.vizag_b_section-header {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.vizag_b_section-header h2 {
    font-weight: 700;
    color: var(--color-primary);
    display: inline-block;
    background-color: var(--color-bg);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.vizag_b_section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-link);
    z-index: 0;
}

.vizag_b_property-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
}

.vizag_b_property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vizag_b_property-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.vizag_b_property-body {
    padding: 20px;
}

.vizag_b_property-title {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.vizag_b_property-location {
    color: var(--color-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.vizag_b_property-price {
    font-weight: 700;
    color: var(--color-link);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.vizag_b_price-badge {
    background-color: var(--color-link);
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.vizag_b_property-section {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .vizag_b_property-card {
        margin-bottom: 20px;
    }
}



/* vijaywada page style Start here    */
.prop_b_section {
    padding: 40px 15px;
    max-width: 1200px;
    margin: auto;
}

.prop_b_section h2 {
    font-size: 24px;
    border-left: 5px solid var(--color-primary);
    padding-left: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}

.prop_b_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.prop_b_item {
    /* border-bottom: 1px solid var(--color-border); */
    padding-bottom: 12px;
}

.prop_b_item h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: var(--color-primary);
}

.prop_b_item p {
    margin: 4px 0;
    font-size: 14px;
}

/* Location color */
.prop_b_item .location {
    color: var(--color-muted);
}

/* Price color */
.prop_b_item .price {
    color: var(--color-danger);
    font-weight: bold;
}

.prop_b_item a {
    display: inline-block;
    margin-top: 5px;
    color: var(--color-link);
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.prop_b_item a:hover {
    text-decoration: underline;
}

/* Image row styling */
.prop_b_images {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.prop_b_images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

@media (max-width: 576px) {
    .prop_b_section {
        padding: 20px 10px;
    }

    .prop_b_item h3 {
        font-size: 16px;
    }
}

/* vijaywada page style  End Here   */



/* bangalore  page Style start Here   */


.bang_b_section {
    max-width: 1200px;
    margin: auto;
}

.bang_b_heading {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-primary);

}

.bang_b_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;

}

/* 
.bang_b_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
} */

.bang_b_title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-primary-dark);

}

.bang_b_location {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bang_b_price {
    font-size: 0.95rem;
    color: var(--color-link);
    font-weight: bold;
    margin-bottom: 12px;
}

.bang_b_btn {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
}


@media (max-width: 576px) {

    .bang_b_grid {
        padding-left: 20px;

    }

    .bang_b_heading {
        padding-left: 20px;

    }
}

/* bangalore  page Style End Here   */



/* Noida Page style Start Here  */

.noida_b_section {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
}

.noida_b_heading {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    
    color: var(--color-primary);
}

.noida_b_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.noida_b_card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.noida_b_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noida_b_img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.noida_b_content {
    padding: 15px;
}

.noida_b_title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.noida_b_location {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.noida_b_price {
    font-size: 0.95rem;
    color: var(--color-link);
    font-weight: bold;
    margin-bottom: 12px;
}

.noida_b_btn {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.noida_b_btn:hover {
    background: var(--color-primary-dark);
}

/* Noida Page style End  Here  */


/* Dubai page Style Start here  */

.dubai_b_section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.dubai_b_title {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-primary);
  padding-left: 10px;
}

.dubai_b_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

.dubai_b_card {
  display: flex;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.dubai_b_details {
  flex: 1;
  padding: 20px;
}

.dubai_b_details h3 {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 20px;
}

.dubai_b_details p {
  margin: 4px 0;
  color: var(--color-muted);
}

.dubai_b_details a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background: var(--color-link);
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
}

.dubai_b_img {
  flex: 0 0 200px;
}

.dubai_b_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .dubai_b_card {
    flex-direction: column;
  }
  .dubai_b_img {
    flex: none;
    height: 200px;
  }
}

/* Dubai page Style  End  here  */