* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    /* font-family: Outfit, sans-serif; */
    /* background: #0b1b2b; */
    color: #fff;
}

/* CONTAINER */
.container {
    width: 100%;

    padding: 0 60px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

.header.scrolled {
    background: #fff;
    color: #000 !important;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.header.scrolled .nav a {
   color: #000 !important;
   /* font-family: Outfit, sans-serif; */
   font-family: Outfit, sans-serif;
}

.header.scrolled .icon-link {
   color: #000;
}

.header.scrolled .icon-link-white {
   color: #fff !important;
}

/* NAV WRAP */
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgb(212 175 55 / var(--tw-text-opacity, 1));
    background-color: #0b3a82;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gold;
}

/* NAV */
.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    /* font-family: Outfit, sans-serif; */
    font-family: Outfit, sans-serif;
}

/* RIGHT */
.right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    font-size: 15px;
}

.btn {
    background:  rgb(15 61 145 / var(--tw-bg-opacity, 1));
    padding: 15px 18px;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    border: 1px solid;
    border-color: rgb(212 175 55 / var(--tw-border-opacity, 1));
}

/* HERO */
.hero {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 700px;
    /* prevents zoom overlap issues */
    padding-top: 80px;
    background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    line-height: 1.1;
}

.hero h1 span {
    color: rgb(212 175 55 / var(--tw-bg-opacity, 1));
    font-style: italic;
}

.hero p {
    margin-top: 20px;
    /* opacity: 0.85; */
    font-size: 18px;
    /* font-family: Outfit, sans-serif; */
    font-family: Outfit, sans-serif;
        line-height: 30px;
    letter-spacing: 0.9px;
    color: #ffffffd9;
}

.buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons a {
    display: inline-flex;
    align-items: center;
    gap: 15px; /* spacing between icon and text */
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    /* font-family: Outfit, sans-serif; */
    font-family: Outfit, sans-serif;
    border: 1px solid rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
}

.gold {
    background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
    color: #000;
}

.gold-text {
    color: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
}

.blue {
    background: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    color: #fff;
}

.outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Optional hover effect */
.buttons a:hover {
    opacity: 0.9;
}

/* STATS */
.stats {
    margin-top: 40px;
    display: flex;
    gap: 50px;
}

.stats div {
    font-size: 50px;
    font-family: "Playfair Display", serif;
}

.stats span {
    display: block;
    font-size: 18px;
    opacity: 0.7;
}

/* MENU */
.menu {
    display: none;
    font-size: 26px;
    cursor: pointer;
}



@media(max-width:992px) {

    .container {
        padding: 20px;
    }

    /* Hide phone and button */
    .right .icon-link,
    .btn {
        display: none;
    }

    /* Show only logo and menu icon */
    .right .menu {
        display: block;
    }

    /* FULL SCREEN OVERLAY MENU */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;

        background: rgba(0, 0, 0, 0.95);

        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;

        padding: 30px;
        gap: 25px;

        transform: translateY(-100%);
        transition: 0.4s ease;

        z-index: 9999;
    }

    /* ACTIVE STATE */
    .nav.active {
        transform: translateY(0);
    }

    /* MENU LINKS */
    .nav a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
    }

    .header.scrolled .nav a {
        color: #fff !important;
    }
    
    .header.scrolled .menu-white {
        color: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
    }

    /* .nav-wrap .menu{
        color: #000;
    } */

    .menu {
        display: block;
        z-index: 10000;
    }

    .phone,
    .btn {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 50px;
    }

    .hero p {
        margin-top: 20px;
        /* opacity: 0.85; */
        font-size: 18px;
        font-family: Outfit, sans-serif;
        line-height: 25px;
        letter-spacing: 0.7px;
        color: #ffffffd9;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-height: 700px) {
    .hero {
        height: auto;
        padding: 80px 0 30px;
    }
}

.top-heading {
  display: inline-block;
  background-color: rgba(28, 28, 28, 0.65); /* semi-transparent dark background */
  border: 1px solid rgba(212, 175, 55, 0.3); /* subtle gold border */
  padding: 10px 15px; /* adjust padding */
  border-radius: 20px; /* pill shape */
  font-family: Outfit, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
}

.top-heading ul {
  /* list-style: none; */
  margin: 0;
  padding: 0;
}

.top-heading li {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-heading .circle {
  width: 5px;
  height: 5px;
  background-color: #d4af37; /* gold circle */
  border-radius: 50%;
  display: inline-block;
}

.about-section {
    padding: 100px 0;
    background: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* SMALL TITLE */
.small-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: #ffd700;
    margin-bottom: 20px;
}

/* LEFT TITLE */
.about-left h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 500;
    color: #000;
}

.about-left h2 span {
    color: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    font-style: italic;
}

/* PARAGRAPH */
.about-left p {
    margin-top: 20px;
    line-height: 1.7;
    color: #1c1c1cbf;
    font-size: 16px;
    font-family: Outfit, sans-serif;
}

/* QUOTE BOX */
.quote-box {
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
}

/* QUOTE (ITALIC FIX) */
.quote em {
    font-family: "Playfair Display", serif;
    color: rgb(15 61 145 / var(--tw-text-opacity, 1));
    font-size: 30px;
    font-style: italic;
}

/* AUTHOR */
.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    font-family: Outfit, sans-serif;
}

.author-designation {
    font-size: 16px;
    margin-top: 5px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    color: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
   
}

/* RIGHT SIDE */
.about-right h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 500;
}

/* GRID CARDS */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARD */
.wcu-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.wcu-card:hover {
    transform: translateY(-5px);
    border-color: rgb(212 175 55 / var(--tw-border-opacity, 1));
}

/* ICON */
.icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #cfe2ff;
    border-radius: 50%;

    background: #f5f9ff;

    transition: 0.3s ease;
}

/* SVG inside icon */
.icon svg {
    width: 25px;
    height: 25px;
    stroke: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    fill: none;
    stroke-width: 1.5;
}

/* HOVER EFFECT */
.wcu-card:hover .icon {
    background: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    border-color: rgb(15 61 145 / var(--tw-bg-opacity, 1));
}

.wcu-card:hover .icon svg {
    stroke: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
}

/* CARD TEXT */
.wcu-card h4 {
    font-size: 22px;
    font-weight: 500;
    /* font-style:italic; */
    font-family: "Playfair Display", serif;
    color: #000;
    padding: 10px 0px;
}

.wcu-card p {
    font-size: 16px;
    color: #1c1c1cbf;
    margin-top: 6px;
    line-height: 1.5;
    font-family: Outfit, sans-serif;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 992px) {

    .about-section {
        padding: 50px 0;
        background: rgb(245 245 245 / var(--tw-bg-opacity, 1));
    }

    /* About grid stacks columns */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* reduce gap for mobile */
    }

    /* Stack all Why Choose Us cards */
    .card-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 15px;
    }

    /* Reduce spacing in left section */
    .about-left h2 {
        font-size: 30px; /* keep original font-family & color */
        line-height: 38px;
    }

    .small-title {
        margin-bottom: 10px !important;
    }

    .about-left p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-left p {
        margin-top: 10px;
        line-height: 1.7;
    }

    /* Right side heading */
    .about-right h3 {
        font-size: 28px;
    }

    /* Quote box adjustments */
    .quote-box {
        padding: 10px 20px 20px 20px;
        margin-top: 20px;
    }

    .quote em {
        font-size: 24px;
    }

    .author {
        font-size: 16px;
        gap: 10px;
        font-family: Outfit, sans-serif;
    }

    .author-designation {
        font-size: 14px;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }
}





.property-section {
    padding: 100px 0;
    background: #fff;
}

/* HEADER */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.top-row h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
}

.top-row h2 span {
    color: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    font-style: italic;
}

.top-row p {
    max-width: 420px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    font-family: Outfit, sans-serif;
}

/* GRID (IMPORTANT FIX) */
.grid-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* CARD BASE */
.card {
    flex: 1;
    background: #f2f2f2;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* 🔥 FIRST CARD BIGGER BUT STILL FITS 4 */
.card.wide {
    flex: 1.6;
}

/* ICON */
.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 36px;
    transition: 0.3s ease;
}

/* TITLE */
.card h3 {
    font-size: 22px;
        font-family: "Playfair Display", serif;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

/* LIST */
.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 0px;
    position: relative;
    font-family: Outfit, sans-serif;
}

.card ul li::before {
    /* content: "•"; */
    position: absolute;
    left: 0;
    color: rgb(15 61 145 / var(--tw-bg-opacity, 1));
}

/* HOVER EFFECT */
.card:hover {
    background: rgb(15 61 145 / var(--tw-bg-opacity, 1));
    color: #fff;
    transform: translateY(-6px);
}

.card:hover h3 {
    color: #fff;
}

.card:hover ul li {
    color: #fff;
}

.card:hover ul li::before {
    color: #ffd700;
}

.card:hover .icon {
    background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
}

.second-row {
    display: flex;
    justify-content: flex-start;
    /* align left like normal card row */
    margin-top: 20px;
}

/* SAME WIDTH AS NORMAL CARD */
.second-row .card {
    flex: 1;
    max-width: 25%;
    /* same as 4-card row width */
}


.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 12px; /* space between tick and text */
  margin-bottom: 8px;
  font-size: 15px;
  color: #1c1c1c;
}

@media(max-width:992px) {

    .second-row {
        flex-direction: column;
    }

    .property-section {
        padding: 50px 0;
        background: #fff;
    }

    .top-row {
        gap: 15px;
        margin-bottom: 20px;
    }

    .second-row .card {
        max-width: 100%;
    }

    .icon {
        margin-bottom: 10px;
        font-size: 36px;
        transition: 0.3s ease;
    }
}

/* 📱 RESPONSIVE */
@media(max-width:992px) {

    .grid-row {
        flex-direction: column;
    }

    .card.wide {
        flex: 1;
    }

    .top-row {
        flex-direction: column;
    }

    .top-row h2 {
        font-size: 34px;
    }
}






/* ========================= PROJECT SECTION ========================= */
.projects-section {
    background: #111;
    padding: 80px 0;
}

/* HEADER */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

/* LEFT SIDE */
.header-left {
    max-width: 620px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: #d6b34a;
    margin-bottom: 10px;
}

.header-left h2 {
    font-size: 50px;
    font-family: "Playfair Display", serif;
    line-height: 1.1;
    font-weight: 500;
}

.header-left h2 span {
    color: #0b3a82;
    font-style: italic;
}

/* ========================= TABS (RIGHT SIDE) ========================= */
.tabs{
    display:flex;
    flex-wrap:wrap;          /* 🔥 allows next line */
    gap:10px;
    justify-content:flex-end;
    align-items:center;
}


/* TAB BUTTON */
.tab{
    padding:8px 16px;
    border:1px solid #444;
    background:transparent;
    color:#fff;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
    font-family: Outfit, sans-serif;
}

/* ACTIVE TAB */
.tab.active{
    background:#d6b34a;
    color:#000;
    border-color:#d6b34a;
}

/* HOVER */
.tab:hover{
    border-color:#d6b34a;
    color:#fff;
}

/* ========================= GRID ========================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.project-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #d6b34a;
}

/* IMAGE */
.img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

/* TAG */
.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d6b34a;
    color: #000;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* TEXT */
.project-card h4 {
    padding: 15px 15px 0;
    font-size: 12px;
    font-family: Outfit, sans-serif;
    letter-spacing: 2px;
    color: #d6b34a;
}

.project-card h3 {
    padding: 15px 15px;
    font-size: 22px;
    font-weight: 500;
    font-family: "Playfair Display", serif;
}

.project-card p {
    padding: 0 15px;
    color: #aaa;
    font-size: 16px;
    font-family: Outfit, sans-serif;
}

/* PRICE */
.price {
    padding: 10px 15px;
    font-size: 22px;
    color: #d6b34a;
    font-weight: 500;
        font-family: Playfair Display, serif;
}

.config {
    padding: 0 15px;
    font-size: 16px;
        font-family: Outfit, sans-serif;
    color: #ccc;
}

/* CHIPS */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px;
}

.chips span {
    font-size: 12px;
    font-family: Outfit, sans-serif;
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 20px;
    color: #ccc;
}

/* BUTTON */
button {
    margin: 15px;
    /* width: calc(100% - 30px); */
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #d6b34a;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #fff;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px;
}

.btn-enquire {
  /* flex: 1; */
  text-align: center;
  padding: 12px 25px;
  background: rgb(212 175 55 / var(--tw-text-opacity, 1));
  color: #000;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
}

.btn-enquire:hover {
  /* background: #fff; */
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.2);
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-download:hover {
  color: rgb(212 175 55 / var(--tw-text-opacity, 1));
  border: 1px solid rgb(212 175 55 / var(--tw-text-opacity, 1));
}

.btn-download svg {
  width: 20px;
  height: 20px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-left h2 {
        font-size: 38px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tabs {
        justify-content: flex-start;
        width: 100%;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .header-left h2 {
        font-size: 30px;
    }

    .tabs {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0px;
    }

    .tab {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 50px;
        flex-shrink: 0;
    }
    .projects-section {
        background: #111;
        padding: 30px 0;
    }

    .projects-header {
        margin-bottom: 20px;
        gap: 10px;
    }
}





.wealth-section{
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.wealth-header{
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.sub-title{
  font-size: 12px;
  font-family: Outfit, sans-serif;
  letter-spacing: 3px;
  color: #1d4ed8;
  font-weight: 600;
  margin-bottom: 20px;
}

.wealth-header h2{
  font-size: 50px;
      font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: #111;
  font-weight: 500;
}

.wealth-header h2 span{
  color:  #1d4ed8;
  font-style: italic;
}

.wealth-header p{
  margin-top: 15px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.wealth-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.wealth-card{
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
}

/* TOP CORNER SHAPE */
.wealth-card::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: #f7f3ea;
  border-radius: 50%;
}

/* HOVER */
.wealth-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: rgb(212 175 55 / var(--tw-border-opacity, 1));
}

/* ICON */
.icon-box{
  width: 60px;
  height: 60px;
  background: #0b3a82;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: 50px;
}

.icon-box svg{
  width: 30px;
  height: 30px;
  stroke: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
}

/* TAG */
.tag{
  font-size: 11px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

/* TITLE */
.wealth-card h3{
  font-size: 22px;
      font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

/* LIST */
.wealth-card ul{
  padding-left: 18px;
  margin-bottom: 18px;
}

.wealth-card ul li{
  font-size: 16px;
  font-family: Outfit, sans-serif;
  color: #555;
  margin-bottom: 15px;
}

/* LINK */
.wealth-card a{
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
  letter-spacing: 1px;
}

.wealth-card a:hover{
  color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .wealth-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .wealth-header h2{
    font-size: 38px;
  }
}

@media (max-width: 600px){
  .wealth-grid{
    grid-template-columns: 1fr;
  }

  .wealth-header h2{
    font-size: 30px;
  }

  .wealth-section {
    padding: 50px 0;
    background: #ffffff;
  }

  .sub-title {
    margin-bottom: 10px;
}

.bw-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px !important;
    align-items: start;
}

.bw-whatsapp-btn {
    margin-top: 20px !important;
}
}





/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section{
  padding: 100px 0;
  background: #0f1115;
  color: #fff;
  position: relative;
}

/* HEADER */
.testimonial-header{
  text-align: center;
  margin-bottom: 50px;
}

.small-title{
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 15px;
}

.testimonial-header h2{
  font-size: 50px;
  font-weight: 500;
      font-family: "Playfair Display", serif;
}

.testimonial-header h2 span{
  color: #d4af37;
  font-style: italic;
}

/* ================= CARD ================= */
.testimonial-card{
  background: #1a1c20;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
}

/* QUOTE */
.quote-testimonial{
  font-size: 60px;
  color: #d4af37;
  position: absolute;
  left: 25px;
  top: 10px;
  opacity: 0.5;
}

/* STARS */
.stars{
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
}

/* TEXT */
.testimonial-card p{
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: Outfit, sans-serif;
}

/* CLIENT */
.client{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.client img{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.client h4{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
      font-family: "Playfair Display", serif;
}

.client span{
  font-size: 12px;
  color: #d4af37;
  letter-spacing: 1px;
  font-family: Outfit, sans-serif;
}

/* ================= SWIPER PAGINATION ================= */


.swiper{
  width: 100%;
  padding-bottom: 40px;
}

.swiper-pagination{
  position: relative;
  margin-top: 25px;
  text-align: center;
  z-index: 10;
}

/* DOTS */
.swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  background: #fff;
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

/* ACTIVE DOT */
.swiper-pagination-bullet-active{
  background: #d4af37;
  transform: scale(1.4);
}

.testimonialSwiper{
  width: 100%;
}

.swiper-slide{
  display: flex;
  justify-content: center;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.bw-contact-section{
  padding: 100px 0;
  background: #f7f8fb;
}

.bw-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.bw-contact-left .bw-contact-small-title{
  font-size: 12px;
  font-family: Outfit, sans-serif;
  letter-spacing: 3px;
  color: #1d4ed8;
  margin-bottom: 20px;
}

.bw-contact-left h2{
  font-size: 50px;
  font-weight: 500;
      font-family: "Playfair Display", serif;
  color: #111;
}

.bw-contact-left h2 span{
  color: #1d4ed8;
  font-style: italic;
}

.bw-contact-left p{
  color: #1c1c1cbf;
  margin: 5px 0 40px;
  line-height: 1.6;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}

/* INFO BOX */
.bw-contact-info{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bw-contact-item{
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.bw-contact-icon-box{
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 1px solid rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  transition: all 0.3s ease;
}

.bw-contact-icon-box svg{
  width: 22px;
  height: 22px;
}

.bw-contact-item:hover .bw-contact-icon-box{
  background: #1d4ed8;
  color: rgb(212 175 55 / var(--tw-bg-opacity, 1)) !important;
  transform: translateY(-3px);
}

.bw-contact-item small{
  color: #000;
  letter-spacing: 2px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}

.bw-contact-item a,
.bw-contact-item p{
  color: #333;
  font-size: 16px;
  text-decoration: none;
  font-family: Outfit, sans-serif;
}

.bw-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;             /* space between icon and text */
  margin-top: 30px;
  background: #22c55e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}

.bw-whatsapp-btn i {
  font-size: 18px;
}

/* RIGHT CARD */
.bw-contact-right .bw-form-card{
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #a9a8a8bf;
}

.bw-form-card h3{
  font-size: 30px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
      font-family: "Playfair Display", serif;
}

.bw-form-card p{
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}

/* FORM */
.bw-row{
  display: flex;
  gap: 20px;
}

.bw-field{
  margin-bottom: 18px;
  width: 100%;
}

label{
  font-size: 16px;
  font-weight: 600;
  font-family: Outfit, sans-serif;
  letter-spacing: 1px;
  color: #000;
  display: block;
  margin-bottom: 6px;
}

input, select, textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  font-family: Outfit, sans-serif;
}

textarea{
  height: 120px;
  resize: none;
}

/* BUTTON */
button{
  background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
  color: #000;
  padding: 17px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  cursor: pointer;
}

button:hover{
  background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
}

.bw-note{
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #777;
  text-align: center;
  font-family: Outfit, sans-serif;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bw-contact-grid{
    grid-template-columns: 1fr;
  }

  .bw-contact-right .bw-form-card {
    padding: 20px;
  }
  .bw-form-card h3 {
    font-size: 25px;
  }

.bw-row{
    flex-direction: column;
  }

  .bw-contact-left h2{
    font-size: 36px;
  }

  .testimonial-section {
    padding: 30px 0;
    background: #0f1115;
    color: #fff;
    position: relative;
}

.bw-contact-left p {
    color: #1c1c1cbf;
    margin: 5px 0 20px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 500;
    font-family: "Playfair Display", serif;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.bw-contact-section {
    padding: 20px 0;
    background: #f7f8fb;
}

.bw-contact-left .bw-contact-small-title {
    margin-bottom: 0px;
}
}




.blog-section{
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.blog-header{
  margin-bottom: 50px;
}

.small-title{
  font-size: 12px;
  font-family: Outfit, sans-serif;
  letter-spacing: 3px;
  color: #1d4ed8;
  margin-bottom: 20px;
}

.blog-title-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.blog-title-row h2{
  font-size: 50px;
  font-weight: 500;
      font-family: "Playfair Display", serif;
  color: #111;
  line-height: 1.1;
}

.blog-title-row h2 span{
  color: #1d4ed8;
  font-style: italic;
}

.blog-title-row p{
  max-width: 420px;
  color: #666;
  line-height: 1.6;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}

/* GRID */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* .blogSwiper{
  overflow: hidden;
  padding: 8px 4px 46px;
} */

.blogSwiper{
  overflow: hidden;
  padding: 18px 4px 46px;
}

/* New Changes here on 22-07-2026 */

/* Blog image container only */
.blog-card .img-box {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f3f3;
}

/* Prevent Read Article styles from affecting image link */
.blog-card .img-box > a {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 0;
}

.blog-card .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.blog-card:hover .img-box img {
    transform: scale(1.08);
}

.blogSwiper .swiper-slide{
  height: auto;
  align-items: stretch;
}

.blogSwiper .blog-card{
  width: 100%;
  height: 100%;
}

.blog-slider-controls{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.blog-swiper-prev,
.blog-swiper-next{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  background: #0f3d91;
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.blog-swiper-prev:hover,
.blog-swiper-next:hover{
  background: #d4af37;
  color: #111;
}

.blog-swiper-prev.swiper-button-disabled,
.blog-swiper-next.swiper-button-disabled{
  opacity: .35;
  cursor: default;
}

.blog-swiper-pagination{
  position: static;
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-swiper-pagination .swiper-pagination-bullet{
  width: 9px;
  height: 9px;
  background: #cbd5e1;
  margin: 0 4px !important;
}

.blog-swiper-pagination .swiper-pagination-bullet-active{
  background: #d4af37;
  transform: scale(1.25);
}

.blog-view-all{
  text-align: center;
  margin-top: 8px;
}

.blog-view-all a{
  color: #1d4ed8;
  font: 600 12px Outfit, sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
}

.blog-empty{
  color: #666;
  font-family: Outfit, sans-serif;
}

/* CARD */
.blog-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.blog-card:hover{
  transform: translateY(0px);
}

/* IMAGE */
.img-box{
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
}

.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover img{
  transform: scale(1.08);
}

/* TAG */
.tag{
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
  color: #000;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 500;
  font-family: Outfit, sans-serif;
}

/* META */
.meta{
  margin-top: 15px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TITLE */
.blog-card h3{
  font-size: 22px;
  font-weight: 500;
      font-family: "Playfair Display", serif;
  margin-top: 10px;
  color: #111;
  line-height: 1.4;
}

/* DESCRIPTION */
.blog-card p{
  font-size: 16px;
  font-family: Outfit, sans-serif;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}

/* LINK */
.blog-card .p-1 > a {
  display: inline-block;
  margin-top: 15px;
  font-size: 12px;
  font-family: Outfit, sans-serif;
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
}

.blog-card .p-1 > a:hover {
  color: #f4c430;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .blog-grid{
    grid-template-columns: 1fr 1fr;
  }

  .blog-title-row{
    flex-direction: column;
  }

  .blog-title-row h2{
    font-size: 38px;
  }

  .blog-section {
    padding: 50px 0;
    background: #ffffff;
}
}

@media(max-width: 600px){
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .blog-title-row h2{
    font-size: 36px;
  }

  .blog-title-row {
    gap: 10px;
}
.blog-header {
    margin-bottom: 20px;
}
}

.p-1 {
    padding: 10px;
}



/* ================= FOOTER ================= */
.bw-footer{
  background: #111;
  color: #ddd;
  padding: 80px 0 30px;
}

/* CONTAINER */
.bw-container{
  width: 90%;
  margin: auto;
}

/* GRID */
/* GRID UPDATED FOR 5 COLUMNS */
.bw-footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 29px;
  align-items: start;
}

/* BRAND */
.bw-brand-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}

.bw-logo-circle{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b3a82;
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.bw-brand-logo h3{
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.bw-brand-logo small{
  color: #aaa;
}

.bw-brand-desc{
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 20px;
}

/* SOCIAL */
.bw-social{
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ICON BASE */
.bw-social-icon{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s ease;
  text-decoration: none;
}

/* SVG SIZE */
.bw-social-icon svg{
  width: 18px;
  height: 18px;
}

/* HOVER EFFECT */
.bw-social-icon:hover{
  background: rgb(212 175 55 / 0.1);
  color: rgb(212 175 55 / var(--tw-text-opacity, 1));
  border-color: rgb(212 175 55 / var(--tw-border-opacity, 1));
  transform: translateY(-3px);
}

/* TITLES */
.bw-footer-title{
  color: rgb(212 175 55 / var(--tw-bg-opacity, 1));
  font-size: 16px;
      font-family: "Playfair Display", serif;
      font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* LIST */
.bw-footer-list{
  list-style: none;
  padding: 0;
}

.bw-footer-list li{
  margin-bottom: 10px;
  font-size: 16px;
  color: #bbb;
  cursor: pointer;
  transition: 0.3s;
  font-family: Outfit, sans-serif;
}

.bw-footer-list li:hover{
  color: #fff;
}

/* CONTACT */
.bw-contact p{
  margin-bottom: 12px;
  font-size: 14px;
  color: #bbb;
}

/* SPACING */
.bw-mt{
  margin-top: 20px;
}

/* BOTTOM */
.bw-footer-bottom{
  margin-top: 50px;
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #888;
  font-family: Outfit, sans-serif;
}

.quote-second {
    margin-top: 20px;
    line-height: 1.7;
    color: #fff;
    font-size: 22px;
        font-family: "Playfair Display", serif;
}

.quote-second span {
    color: rgb(212 175 55 / var(--tw-bg-opacity, 1));
}


.bw-footer-links span{
  margin-left: 15px;
  cursor: pointer;
  font-family: Outfit, sans-serif;
}

.bw-footer-links span:hover{
  color: #fff;
}

.bw-contact-link{
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: Outfit, sans-serif;
}

.bw-contact-link:hover{
  color: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bw-footer-grid{
    grid-template-columns: 1fr 1fr;
  }
  .bw-footer {
    padding: 50px 0 30px;
}
}

@media(max-width: 600px){
  .bw-footer-grid{
    grid-template-columns: 1fr;
  }

  .bw-footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}







/* ======================= Calculator Section ======================= */
.bw-calc-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}

.bw-calc-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.bw-calc-header span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #0F3D91;
  font-weight: 600;
}

.bw-calc-header h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #1C1C1C;
  margin-top: 1.5rem;
}

.bw-calc-header h2 span {
  color: #0F3D91;
  font-style: italic;
}

.bw-calc-header .gold-gradient-text {
  background: linear-gradient(135deg, #d4af37, #f4d97a 50%, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bw-calc-header p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #666;
}

/* Tabs */
.bw-calc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: #F5F5F5;
  padding: 0.375rem;
  border-radius: 9999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.bw-calc-tab {
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
  background: #fff;
  color: #666666;
}

/* Active tab styling */
.bw-calc-tab.active,
.bw-calc-tab[data-state="active"] {
  background: #0F3D91;    /* active background */
  color: #fff;            /* active text */
  border-color: #D4AF37;
  box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
}

.bw-calc-tab i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

button:hover {
    background: rgb(212 175 55 / var(--tw-bg-opacity, 1));
    color: #000;
}

/* Panels */
.bw-calc-panels {
  margin-top: 0.5rem;
}

.bw-calc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  background: #F5F5F5;
}

.bw-calc-panel.active {
  display: grid;
}

/* Left Sliders */
.bw-calc-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bw-slider-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bw-slider-row label {
  width: 8rem;
  font-weight: 500;
  font-size: 18px;
  font-family: Outfit, sans-serif;
  color: #1C1C1C;
}

.bw-slider-row input[type="range"] {
  flex: 1;
}

.bw-slider-row input[type="number"] {
  width: 5rem;
  text-align: right;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #0F3D91;
}

/* Right Cards */
.bw-calc-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bw-card-row {
  display: flex;           /* use flex instead of grid */
  flex-direction: row;     /* horizontal layout */
  justify-content: space-between; /* even spacing between cards */
  gap: 0.75rem;            /* space between cards */
}

.bw-card {
  flex: 1;                 /* all cards equal width */
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #D4AF37;
  background: #fff;
  text-align: center;
}

.bw-card.dark {
  background: #0F3D91;
  color: #fff;
}

.bw-card .label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
}

.bw-card .value {
  margin-top: 0.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #D4AF37;
}

/* Make chart container responsive */
.bw-calc-right canvas {
  width: 100%;
  height: auto;          /* allow height to scale */
  aspect-ratio: 2 / 1;  /* maintains 2:1 width:height ratio */
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  max-height: 300px; 
  padding: 30px;    /* optional max height */
}

/* MOBILE RESPONSIVE FIX FOR CALCULATOR SECTION */
@media (max-width: 1024px) {
  /* Stack panels vertically */
  .bw-calc-panel {
    grid-template-columns: 1fr !important;
    padding: 1rem !important;
    gap: 1rem !important;
  }

  /* Left sliders stack nicely */
  .bw-calc-left {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .bw-slider-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .bw-slider-row input[type="number"] {
    width: 100% !important;
  }

  /* Right cards - make horizontal cards wrap */
  .bw-card-row {
    flex-direction: column !important; /* stack cards vertically on mobile */
    gap: 1rem !important;
  }

  /* Chart responsive */
  .bw-calc-right canvas {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    max-height: 250px !important;
  }

  /* Tabs - fit full width */
  .bw-calc-tabs {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100% !important;
    overflow-x: auto;
    padding: 0.5rem;
  }

  .bw-calc-tab {
    flex: 0 0 auto;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* Header text */
  .bw-calc-header h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .bw-calc-header p {
    font-size: 0.875rem !important;
  }
}
@media (max-width: 767px) {
    .bw-calc-tabs {
        justify-content: center !important;
    }
    .wealth-header {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 20px;
    }
    .bw-calc-panels {
        margin-top: 20px;
    }
    .bw-calc-right canvas {
        padding: 30px 0px 20px 10px;
    }
    .bw-calc-section {
        padding-top: 0px;
        padding-bottom: 50px;
        background: #fff;
    }
    
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: #000 !important;
}




/* Right Cards - Stacked Vertically for Wealth Goal */
#bw-tab-goal .bw-calc-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bw-tab-goal .bw-card-row {
  display: flex;
  flex-direction: column; /* stacked vertically */
  gap: 1rem;
}

#bw-tab-goal canvas {
  display: none; /* remove chart for Wealth Goal */
}

.bw-form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  font: 500 14px/1.5 Outfit, sans-serif;
}

.bw-form-status.is-success {
  display: block;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.bw-form-status.is-error {
  display: block;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.projects-empty {
  grid-column: 1 / -1;
  color: #aaa;
  text-align: center;
  padding: 30px 15px;
}
