*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --clr-bg: #0d0f14;
    --clr-navbar: #ffffff;
    --clr-ticker: #ffffff;
    --clr-primary: #d5b046;
    --clr-text: #000000;
    --clr-muted: #6b7280;
    --clr-positive: #d5b046;
    --clr-negative: #ff4d4d;
    --clr-border: #e5e7eb;
    --clr-title: #d5b046;
    --clr-navyblue: #10346ed4;
    --primary-teal: #10346ed4;
    --primary-dark: #d5b046;
    --font: 'Inter', sans-serif;
    --ticker-h: 45px;
    --nav-h: 85px;
    --transition: .2s ease;
}

body {
    font-family: var(--font);
    background: #ffffff;
    color: var(--clr-text);
    overflow-x: hidden;
}

.ticker-bar {
    width: 100%;
    height: var(--ticker-h);
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 5px 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 45s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin: 0 5px;
    background: #0d0f14;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 40px;

}

.t-label {
    color: #ffffff;
}

.t-value {
    color: #ffffff;
    font-weight: 700;
}

.t-change.positive {
    color: var(--clr-positive);
}

.t-change.negative {
    color: var(--clr-negative);
}

.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* align-items: center; */
}

.banner-img {
    width: 100%;
    height: 100%;
}

.banner-img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
background: linear-gradient(to right, rgb(11 32 52) 40%, rgba(0, 40, 80, 0.6) 70%, transparent 100%);}

.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 1010;
    background: transparent;
}

.navbar-inner {
    background: #10346e;
}

.navbar.sticky-ready {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    background: #0b335c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

.hamburger {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar.sticky-up {
    transform: translateY(0);
}

.navbar.sticky-down {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 155px;
    width: auto;
    padding: 10px 0px;
    display: block;
    transition: height 0.3s ease;
}

.sticky-ready .logo-img {
    height: 90px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.nav-pill {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    /* background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: #d5b046;
    background: #f0fdf9;
}

.has-dropdown {
    position: relative;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Bridge the 15px gap */
    background: transparent;
    z-index: 1;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    border: 1px solid #eee;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    display: block;
}


.icon-sm {
    font-size: 11px;
    margin-left: 4px;
    opacity: 0.7;
}

.pill-search-btn i {
    font-size: 18px;
}

.nav-link i {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

.dropdown li a:hover {
    background: #f8f9fa;
    color: #d5b046;
}

.pill-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    margin-left: 5px;
}

.pill-search-btn:hover {
    background: #f0f0f0;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.mobile-search-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.login-btn {
    background: #d5b046;
    color: #fff;
    text-decoration: none;
    padding: 10px 35px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    transition: all var(--transition);
}

.login-btn:hover {
    background: #d5b046;
    transform: scale(1.03);
}


@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .logo-img {
        height: 65px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .navbar {
        height: 80px;
    }

    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        border: none;
        background: none;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }

    .login-btn {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .ticker-bar {
        display: none;
    }
}

.search-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1010;
    align-items: center;
}

.search-overlay.open {
    display: flex;
}

.search-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-inner input {
    flex: 1;
    border: none;
    font-size: 28px;
    font-weight: 400;
    outline: none;
    color: #000;
    background: transparent;
}

.search-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-close:hover {
    color: #000;
    transform: rotate(90deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.12);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.menu-close {
    background: #f8f9fa;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    transition: all 0.2s;
}

.menu-close:hover {
    background: #eee;
    transform: scale(0.95);
}

.mobile-links {
    list-style: none;
    padding: 20px;
    overflow-y: auto;
}

.mobile-links li {
    margin-bottom: 8px;
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-links a i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #999;
}

.mobile-links a:hover,
.mobile-links a.active {
    background: #f0fdf9;
    color: var(--clr-primary);
}

.mobile-links a:hover i,
.mobile-links a.active i {
    color: var(--clr-primary);
}

.mobile-login-btn {
    margin-top: 20px;
    justify-content: center !important;
    background: #000;
    color: #fff !important;
    font-weight: 700 !important;
}

.mobile-login-btn:hover {
    background: var(--clr-primary) !important;
}

/* Mobile Dropdown Styles */
.has-mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 30px;
    background: #f9fdfc;
}

.mobile-submenu li a {
    padding: 12px 20px !important;
    font-size: 15px !important;
    opacity: 0.8;
}

.has-mobile-dropdown.active .mobile-submenu {
    display: block;
}

.has-mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.banners-content {
    position: absolute;
    top: 160px;
    left: 80px;

}



.banner-title {
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid goldenrod;
    max-width: 600px;
}

.banner-main {
    font-size: 35px;
    color: white;
    font-weight: 900;
}

.banner-sub {
    font-size: 33px;
    color: white;
}

.ban-text {
    padding-top: 30px;
    max-width: 600px;
    font-size: 18px;
    color: white;
}

.banner-buttons {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}

.button-one {
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    padding: 10px;
    background: green;
    border-radius: 8px;
}

.button-two {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: bold;
    padding: 10px;
    background: rgba(221, 192, 28, 0.847);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .banner-section {
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .banner-img img {
        object-position: 80% center !important;
        height: 100vh !important;
    }

    .banner-overlay {
        width: 100% !important;
        background: linear-gradient(to right, rgb(1 36 71) 0%, rgb(0 40 80 / 69%) 100%) !important;
        /*background: linear-gradient(to right, rgba(0, 40, 80, 0.9) 0%, rgba(0, 40, 80, 0.4) 100%) !important;*/
    }

    .banners-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        padding: 120px 20px 40px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .banner-title {
        max-width: 100% !important;
        border-bottom: 2px solid goldenrod !important;
    }

    .banner-main {
        font-size: 26px !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    .banner-sub {
        font-size: 20px !important;
        line-height: 1.3 !important;
        display: block !important;
        margin-top: 5px !important;
    }

    .ban-text {
        font-size: 15px !important;
        padding-top: 15px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }

    .banner-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        padding-top: 25px !important;
    }

    .button-one,
    .button-two {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        display: block !important;
        margin: 0 !important;
    }
}

.gold-text {
    color: #d5b046;
}

.italic-text {
    font-style: italic;
}

.framework-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.frame-cards {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
}

.wealth-journey-btn-wrap {
    list-style: none;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 20px;
}

.wealth-journey-btn-wrap a {
    list-style: none;
    color: white;
    background-color: var(--clr-navyblue);
    text-decoration: none !important;
    padding: 10px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.wealth-journey-btn-wrap a:hover {
    background-color: var(--clr-primary);
    color: black;
    text-decoration: none !important;
}

.wealth-journey-btn-wrap a:focus,
.wealth-journey-btn-wrap a:active {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}


/* .frame-cards.step-1 {
    background-image: url('assets/images/framwork-img.jpg"');
}

.frame-cards.step-2 {
    background-image: url('assets/images/framework-img1.jpg');
}

.frame-cards.step-3 {
    background-image: url('assets/images/framework-img2.jpg');
} */

/* .frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */
/* .step-2, .step-3 {
    background: rgba(8, 135, 226, 0.252);
} */
.frame-card-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 80px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    background: rgba(1, 79, 136, 0.656);
}

.frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #f3d47a 0%, #d5b046 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #081a30;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step-header h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.frame-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.frame-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #d5b046;
    font-size: 14px;
}

.step-graph-icon {
    color: rgba(213, 176, 70, 0.4);
    opacity: 0.6;
}

@media (max-width: 991px) {
    .framework-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    /* .frame-cards {
        min-height: auto;
    } */
}


.why-warren-section {
    background: var(--clr-navyblue);
    padding: 20px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-warren-header {
    margin-bottom: 30px;
}

.why-warren-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 15px;
}


.why-warren-grid {
    margin-top: 40px;
    border-top: 1px solid rgba(213, 176, 70, 0.15);
    border-bottom: 1px solid rgba(213, 176, 70, 0.15);
}

.why-warren-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(213, 176, 70, 0.2);
    border-bottom: 1px solid rgba(213, 176, 70, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .why-warren-item {
        border-bottom: none;
    }
}

.why-warren-item:last-child {
    border-right: none;
}

.why-warren-item:hover {
    background: rgba(213, 176, 70, 0.05);
}

.why-warren-icon {
    font-size: 50px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.why-warren-icon i {
    color: var(--clr-primary);
    /* Simplified for better cross-browser compatibility */
    transition: transform 0.3s ease;
}

.why-warren-item:hover .why-warren-icon i {
    transform: translateY(-5px) scale(1.1);
}

.why-warren-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.item-divider {
    width: 40px;
    height: 1px;
    background: var(--clr-primary);
    margin: 0 auto 20px;
}

.why-warren-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 1200px) {
    .why-warren-item:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .why-warren-item:nth-child(3n) {
        border-right: 1px solid rgba(213, 176, 70, 0.2);
    }

    .why-warren-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .why-warren-item {
        border-right: none;
        border-bottom: 1px solid rgba(213, 176, 70, 0.2);
    }

    .why-warren-title {
        font-size: 32px;
    }
}





.triombanner {
    width: 100%;
    background: transparent;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-content {
    max-width: 1300px;
    margin-bottom: 0px;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin: 20px 0;
}

.banner-btns {
    margin-top: 10px;
}

.btn-know {
    display: inline-block;
    background: #d5b046;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-know:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 175, 170, 0.3);
}

.banner-main-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.banner-left-card {
    position: absolute;
    bottom: 15%;
    left: 0;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    min-width: 220px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.banner-left-card .card-icon {
    display: none;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf9;
    color: #72afaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.card-text h3 {
    font-size: 48px;
    font-weight: 800;
    color: #d5b046;
    line-height: 1;
    margin: 0;
}

.card-text p {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.banner-right-card {
    position: absolute;
    top: 38%;
    right: -20px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: float 5s ease-in-out infinite;
}

.calc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 10px;
}

.calc-item i {
    width: 35px;
    height: 35px;
    background: #f0fdf9;
    color: #d5b046;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.calc-item span a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.calc-item:hover {
    background: #d5b046;
}

@media (max-width: 991px) {

    .banner-left-card,
    .banner-right-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner-main-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

.about-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.small-title {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.image-col {
    position: relative;
    padding-right: 40px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats {
    display: flex;
    align-items: center;
    margin: 1px 0;
    gap: 20px;
}

.stat-item {
    position: relative;
    flex: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background: #eee;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* .read-btn {
    background: #72afaa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    align-self: flex-start;
} */

.read-btn:hover {
    background: #5d938f;
}

@media (max-width: 991px) {

    .about-section h2 {
        font-size: 32px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item::after {
        display: none;
    }
}

.store-section {
    background-color: whitesmoke;
    color: #000;
    padding: 60px 0;
    overflow: hidden;
}

.features-section {
    padding: 30px 10px;
}

.store-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;

}

.store-image-container {
    position: relative;
    flex: 1;
}

.store-image {
    position: relative;
    z-index: 2;
}

.store-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.floating-experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 10;
    min-width: 200px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.dots-pattern {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

.store-content {
    flex: 1;
}

.store-content .small-title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.store-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.store-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding-top: 30px;
}

.stats-bar .stat-item {
    flex: 1;
    text-align: center;
}

.stats-bar .stat-item:not(:last-child) {
    border-right: 1px solid #eee;
}

.stats-bar h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.stats-bar p {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.read-btn {
    text-decoration: none;
    background: #d5b046;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 175, 170, 0.2);
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    background: #72afaa;
    opacity: 1;
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .testimonials-left {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .store-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .store-image-container {
        width: 100%;
        max-width: 500px;
    }

    .floating-experience-card {
        right: 0;
        bottom: -20px;
        padding: 15px 25px;
    }
}

.partner-section {
    margin: 70px 0px;
}

.partner-title span {
    color: #d5b046;
    font-size: 25px;
}

.slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: #00b386;
}

.slide-img img {
    width: 130px;
}

.achievements-section {
    background: black;
    color: white;
    margin: 60px 0px;
    padding: 50px 0px;
}

.count {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.count span {
    font-size: 50px;
    font-weight: 800;
}

.count p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.features-para {
    max-width: 90%;
    padding-top: 30px;
}

.features-left,
.features-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 0px;
}

.features-right {
    gap: 20px;
    padding-top: 80px;

}

.features-left img {
    width: 100%;
}

.features-right img {
    width: 170px;
}

.knowmore {
    text-decoration: none;
    color: white;
    background: var(--clr-title);
    padding: 7px 15px;
    border-radius: 100px;
}

.inner-text {
    background: rgba(219, 215, 215, 0.301);
    margin: 15px;
    padding: 20px;
    border-radius: 30px;
}

.inner-title span {
    font-size: 23px;
    font-weight: 500;
}

.sip-section-home {
    padding: 20px 0px;
    background: whitesmoke;
}

.sip-inner-row,
.canvas-chart,
.sip-side-row {
    background: white;
    border: 1px solid #7FB8AD;
    border-radius: 10px;
    text-align: center;
}

.canvas-chart {
    height: 410px;
}

.sip-inner-row {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.label-inner-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.label-inner-top input {
    align-content: end;
    width: 100px;
    text-align: right;
    background: var(--clr-navyblue);
    color: white;
    border: none;
    border-radius: 5px;
}

.sip-inner-row input[type="range"] {
    accent-color: black;
}

.sip-inner-row p {
    color: var(--clr-title);
    padding-top: 10px;
    font-size: 19px;
    font-weight: 700;
}

.service-section {
    position: relative;
    padding: 40px 0px;

}

.service-card-slide {
    width: 700px;
    height: 400px;
    background: white;
    /* padding: 20px 10px; */
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    gap: 45px;
}

.service-card-slide:hover {
    background: var(--clr-navyblue);
}

.service-card-slide:hover a {
    color: white;
}

.service-card-slide a {
    text-decoration: none;
    color: black;
}

.swiper-img-box {
    position: relative;
    width: 100%;
    height: 330px;
    /* overflow: hidden; */

}

.swiper-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-content {
    position: absolute;
    top: 89%;
    left: 39%;
    background: black;
    padding: 10px;
    border-radius: 50%;
}

.img-content img {
    color: white;
    width: 50px;
}

.service-card-content {
    position: relative;
    margin-top: 30px;
}

.fund-section {
    padding: 50px 0;
    background: #fbfbfb;
}

.fund-header {
    text-align: center;
    margin-bottom: 50px;
}

.fund-small-title {
    color: #d5b046;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.fund-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.fund-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.control-group {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.control-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.control-label span:nth-child(2) {
    font-weight: 800;
}

.fund-slider {
    width: 100%;
    accent-color: #000;
    height: 6px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.fund-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.fund-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.fund-card:hover {
    transform: translateY(-5px);
}

.fund-card-title {
    color: var(--clr-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fund-card-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-navyblue);
    margin-bottom: 10px;
}

.fund-card-note {
    font-size: 13px;
    color: #666;
}

.fund-charts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.chart-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.chart-container svg {
    transform: rotate(-90deg);
}

.chart-bg {
    fill: none;
    stroke: var(--primary-dark);
    stroke-width: 14;
}

.chart-progress {
    fill: none;
    stroke: var(--clr-navyblue);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 0.5s ease;
}

.chart-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.chart-percent {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}

.chart-text {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
}

.chart-info {
    position: relative;
    width: 100%;
}

.chart-info-item {
    font-size: 13px;
    font-weight: 600;
    position: absolute;
}

.chart-info-item.dark {
    color: var(--clr-primary);
    left: 8%;
    top: -171px;
}

.chart-info-item.teal {
    color: var(--clr-navyblue);
    right: 6%;
    top: -75px;
}

.chart-info-item.dark::before,
.chart-info-item.teal::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 1px;
    background: #ccc;
    top: 50%;
}

.chart-info-item.dark::before {
    right: -30px;
}

.chart-info-item.teal::before {
    left: -30px;
}

.fund-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #f1f3f4;
    padding: 15px 40px;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-box.dark {
    border: 1px solid #ccc;
    background: rgba(0, 0, 0, 0.05);
}

.legend-box.teal {
    background: var(--clr-navyblue);
}

@media (max-width: 1024px) {

    .fund-results,
    .fund-charts {
        grid-template-columns: 1fr 1fr;
    }

    .chart-item {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .fund-controls {
        grid-template-columns: 1fr;
    }

    .fund-results,
    .fund-charts {
        grid-template-columns: 1fr;
    }
}

.tools-section {
    padding: 50px 0;
    background: #fff;
}

.tools-header {
    text-align: center;
    margin-bottom: 40px;
}

.tools-small-title {
    color: #d5b046;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.tools-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.tool-card {

    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;

    overflow: hidden;
}

.tool-card a {
    text-decoration: none;
    padding: 20px 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tool-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tool-card.teal {
    background: var(--clr-navyblue);
}

.tool-card.black {
    background: #fff;
    color: #000;
    border-radius: 20px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.18);
}

.tool-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.tool-text {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: #000;
}

.tool-icon {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tool-icon i {
    font-size: 32px;
}

.tool-card.teal .tool-icon i {
    color: #d5b046;
}

.tool-card.black .tool-icon i {
    color: var(--clr-navyblue);
}

.tool-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.tool-card p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tools-main-title {
        font-size: 32px;
    }

    .tool-card {
        padding: 40px 30px;
    }
}

.investing-section {
    padding: 50px 0;
    background-color: #f7f9fb;
    position: relative;
    overflow: hidden;
}

.investing-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.investing-header .section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
}

.chart-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.chart-card-header p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.chart-card-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-info-card {
    background: linear-gradient(135deg, #0d0f14 0%, #1a3c3a 100%);
    border-radius: 20px;
    padding: 60px 45px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 24px;
    color: #d5b046;
    margin-top: -2px;
}

.info-text {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
}

.investing-footer-text p {
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.qr-float {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.qr-float:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .investing-section {
        padding: 60px 0;
    }

    .investing-header .section-title {
        font-size: 30px;
    }

    .investing-header .section-subtitle {
        font-size: 16px;
    }

    .chart-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .chart-card-body {
        height: 350px;
        /* Ensure chart has height when stacked on tablet */
    }

    .canvas-chart {
        height: 350px;
    }

    .gradient-info-card {
        padding: 40px 30px;
    }

    .info-text {
        font-size: 17px;
    }

    .info-list {
        gap: 25px;
    }

    .qr-float {
        display: none;
    }
}

@media (max-width: 576px) {
    .investing-header .section-title {
        font-size: 26px;
    }

    .chart-card-header h3 {
        font-size: 18px;
    }

    .info-list li {
        gap: 15px;
    }

    .info-icon {
        font-size: 20px;
    }

    .chart-card-body {
        height: 250px;
        /* Ensure chart has height on mobile */
    }

    .canvas-chart {
        height: 300px;
    }
}


@media (max-width: 1024px) {
    .nav-container {
        height: 70px;
    }

    .logo-img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .btn-know {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .stats-bar {
        flex-direction: column;
        gap: 20px;
        padding-top: 10px;
    }

    .stats-bar .stat-item {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .stats-bar .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .sip-inner-row {
        margin-bottom: 20px;
    }

    .label-inner-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .label-inner-top input {
        width: 100%;
        text-align: left;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .counter-section .row {
        row-gap: 30px;
    }

    .count span {
        font-size: 32px;
    }

    .count p {
        font-size: 13px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .partner-title span {
        font-size: 18px;
    }

    .partner-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .features-para {
        max-width: 100%;
        text-align: center;
    }

    .features-left,
    .features-right {
        margin-bottom: 30px;
    }

    .inner-title span {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 6px;
        padding-right: 15px;
    }
}


.testimonial {
    padding: 50px 0px;
}

.testi-slide {
    height: 300px;
}

.testimonial-card {
    background: black;
    color: white;
    padding: 25px;
    border-radius: 15px;
    gap: 20px;
    height: 100%;
}

.testi-text {
    font-size: 18px;
    padding: 10px 0px;
}

.read-more {

    text-decoration: none;
    color: var(--clr-title);
}

.testimonial-user {
    display: flex;
    padding: 10px 0px;
    gap: 20px;
}

.user-info h4 {
    color: var(--clr-title);
    font-size: 16px;
}

.desktop-only {
    display: flex;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }

    .testimonial {
        padding-left: 17px;
        padding-right: 17px;
    }
}

.blogs-section {
    padding: 50px 0;
    background: #fbfbfb;
}

.blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-small-title {
    color: #d5b046;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.blogs-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.blogs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-featured-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    padding: 20px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.blog-content {
    padding: 25px 35px 35px;
}

.blog-featured-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-side-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-horizontal {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 240px 1fr;
    height: calc(50% - 10px);
}

.blog-side-image {
    padding: 15px;
    overflow: hidden;
}

.blog-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog-side-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-horizontal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }

    .blog-card-horizontal {
        grid-template-columns: 200px 1fr;
        height: auto;
    }

    .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-card-horizontal {
        grid-template-columns: 1fr;
    }

    .blog-side-image {
        height: 200px;
    }

    .blogs-main-title {
        font-size: 30px;
    }

    .blog-featured-card h3,
    .blog-card-horizontal h3 {
        font-size: 20px;
    }
}

.main-footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo-box {
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    width: 180px;
}

.footer-logo-box img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-desc {
    color: #e5e7eb;
    font-size: 15px;
    max-width: 320px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d5b046;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 16px;
    font-weight: 500;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: var(--clr-title);
    color: #ffffff;
}

.footer-reg-info {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.footer-legal-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    color: #9ca3af;
}

.footer-legal-nav a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-legal-nav span {
    color: rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
    color: #9ca3af;
    text-align: justify;
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.amfi-logo-box {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.amfi-logo-box span {
    background: #d5b046;
    color: #fff;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 18px;
}

.amfi-text {
    color: #000;
    font-weight: 700;
}

.sahi-hai-box {
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 8px;
}

.sahi-hai-box img {
    height: 35px;
}

.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-disclaimer {
        padding: 0;
    }

    .footer-copyright-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-logos-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

.about-page-header {
background: linear-gradient(to right, rgb(12 28 44 / 90%) 40%, rgba(0, 40, 80, 0.8) 70%, rgb(0 40 80 / 81%) 100%);
/* background: #000000;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        radial-gradient(circle at top right, #1a1a1a, #000); */
    padding: 130px 0;
    text-align: center;
    border-bottom: 2px solid #72afaa;
}

.about-title {
    color: #ffffff;
    font-size: 50px;
    /* font-weight: 800; */
    margin: 0;
    /* letter-spacing: -2px; */
    text-transform: capitalize;
}

.blog-title {
    color: white;
    font-size: 38px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .about-page-header {
        padding: 100px 0;
    }

    .about-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        padding: 80px 0;
    }

    .about-title {
        font-size: 25px;
        margin-top: 40px;
    }
}

.about-story-section {
    padding: 30px 0;
    background: #ffffff;
}

.about-story-header {
    text-align: center;
}

.about-story-header .title,
.values-header .title {
    color: var(--clr-primary);
    font-size: 38px;
    font-weight: 700;
}

.header-line {
    width: 100%;
    height: 1.5px;
    background: #444;
    margin: 0 auto;
}

.story-content {
    margin-top: 60px;
}

.story-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

.story-text {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote {
    font-size: 25px;
    color: var(--clr-navyblue);
}

.sub-quote {
    font-size: 21px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: justify;
}

.story-text b {
    color: var(--clr-title);
}

.regards {
    display: flex;
    flex-direction: column;
    align-items: end;
}

@media (max-width: 991px) {
    .story-text {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-story-header .title {
        font-size: 32px;
    }
}

.philosophy-section {
    padding: 10px 0;
}

.philosophy-title {
    text-align: left;
    /* color: var(--clr-primary); */
    font-size: 20px;
    font-weight: 200;
}

.philosophy-title h3 {
    color: var(--clr-navyblue)
}

.philosophy-title li {
    list-style: none;
}

.tick::before {
    content: "\2713";
    color: var(--clr-navyblue);
    margin-right: 10px;
}

.mission-vision-section {
    padding: 60px 0;
    background: #fbfbfb;
}

.mission-vision-card {
    background: #000000;
    border-radius: 35px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
}

.card-header-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header-icon i {
    color: var(--clr-primary);
    font-size: 28px;
}

.card-header-icon h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.mission-vision-card .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.card-img-placeholder {
    margin-top: auto;
    width: 100%;
    height: 280px;
    background: #1a1a1a;
    border-radius: 25px;
    overflow: hidden;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-cta-section {
    padding: 40px 0;
    background: #ffffff;
}

.cta-box {
    background: #000000;
    border-radius: 45px;
    padding: 40px;
    text-align: center;
}

.cta-title {
    color: var(--clr-primary);
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-subtitle {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-subtitle strong {
    color: #ffffff;
}

.btn-start {
    display: inline-block;
    background: var(--clr-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-start:hover {
    transform: scale(1.05);
    color: #ffffff;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 38px;
    }

    .cta-box {
        padding: 60px 20px;
    }

    .card-img-placeholder {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .mission-vision-card {
        padding: 30px;
    }

    .card-header-icon h3 {
        font-size: 26px;
    }
}


.values-section {
    padding: 40px 0;
    background: whitesmoke;
}

.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.values-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: #000000;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 40px;
    color: var(--clr-primary);
}

.value-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-header h2 {
        font-size: 30px;
    }
}

.contact-info-section {
    padding-top: 35px;
    padding-bottom: 30px;
}

.contact-info-card {
    background: #f3f4f6;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    position: relative;
    height: 240px;
    width: 100%;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-box.placeholder {
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #9ca3af;
}

.floating-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--clr-title);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.contact-card-content {
    padding-top: 45px;
}

.contact-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.contact-card-content p {
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
}


.footer-disclaimer-small {
    margin-top: -15px;
}

.testimonial-avatar-icon {
    color: #72afaa;
}

.conversation-section {
    padding: 100px 0;
}

.conversation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.conversation-content {
    padding: 0 40px;
}


.conversation-section {
    padding: 30px 0px;
}

.conversation-img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

.conversation-content {
    padding-left: 20px;
}

.conversation-content .small-title {
    color: #111827;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.conversation-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.conversation-content p {
    font-size: 17px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 90%;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    padding: 14px 20px;
    margin-bottom: 15px;
    font-size: 16px;
    background: #ffffff;
    color: #111827;
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(114, 175, 170, 0.1);
    border-color: #72afaa;
}

.captcha-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 20px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 320px;
    border-radius: 4px;
}

.btn-submit {
    background: #d5b046;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.btn-submit:hover {
    background: #d5b046;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 175, 170, 0.2);
}

@media (max-width: 991px) {
    .conversation-content {
        padding: 40px 0 0;
    }

    .conversation-img {
        min-height: 400px;
    }

}


/* Service Detail Pages */
.service-intro-section {
    padding: 40px 0;
    background: #fff;
}

.service-intro-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-intro-text {
    padding-left: 40px;
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}

.service-types-section {
    padding: 40px 0;
    background: #fcfcfc;
}

.service-title-small {
    display: block;
    color: #72afaa;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-title-main {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #000;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 25px;
}

.service-card {
    background: #f8fafb;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    color: #d5b046;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-benefits-section {
    padding: 30px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background: #f8fafb;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    color: #d5b046;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.service-cta-section {
    padding: 30px 0px;
    text-align: center;
}

.cta-description {
    max-width: 1000px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.btn-black-rounded {
    background: var(--clr-title);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-black-rounded:hover {
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .service-intro-text {
        padding-left: 0;
        margin-top: 30px;
    }

    .service-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .service-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-title-main {
        font-size: 28px;
    }
}

.sip-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.sip-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sip-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.sip-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sip-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.sip-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.sip-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* ── Tablet: stack columns ── */
@media (max-width: 900px) {
    .sip-layout {
        grid-template-columns: 1fr;
    }

    .sip-right-stack {
        gap: 16px;
    }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .sip-section {
        padding: 28px 0 40px;
    }

    .sip-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .sip-main-title {
        font-size: 1.3rem;
    }

    .sip-explore-row {
        width: 100%;
    }

    .sip-calc-select {
        flex: 1;
        min-width: unset;
    }

    .sip-left-box {
        padding: 20px 16px 18px;
    }

    .sip-field {
        margin-bottom: 18px;
    }

    .sip-field-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .sip-field-input {
        width: 80px !important;
        font-size: 0.82rem;
        padding: 5px 6px;
        min-width: 0;
    }

    .sip-result-row {
        font-size: 0.85rem;
    }

    .sip-chart-box {
        padding: 16px 14px;
    }

    .sip-chart-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .sip-pie-circle {
        width: 160px;
        height: 160px;
    }

    .sip-bar-wrap {
        height: 190px;
    }

    .sip-legend {
        gap: 14px;
        margin-top: 10px;
    }

    .sip-legend-item {
        font-size: 0.75rem;
    }
}



.sip-left-box {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 32px 28px 28px;
}

.sip-field {
    margin-bottom: 24px;
}

.sip-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.sip-field-label span {
    color: #333 !important;
}

.sip-field-input {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #111 !important;
    background: #fff !important;
    width: 110px;
    text-align: right;
}

.sip-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #d5b046 0%, #d5b046 var(--pct, 0%), #d0d5dd var(--pct, 0%), #d0d5dd 100%);
    outline: none;
    cursor: pointer;
}

.sip-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.sip-slider::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.sip-results {
    border-top: 1px solid #e8eaed;
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sip-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #444 !important;
}

.sip-result-row span {
    color: #444 !important;
}

.sip-result-value {
    font-weight: 600;
    color: #111 !important;
}

.sip-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sip-chart-box {
    background: #fff;
    border: 1.5px solid #d5b046;
    border-radius: 12px;
    padding: 24px 20px;
}

.sip-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.sip-chart-title-left {
    text-align: left;
}

.sip-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.sip-pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #d5b046 0% 50%, #111111 50% 100%);
    transition: none;
}

.sip-bar-wrap {
    position: relative;
    height: 230px;
}

.sip-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.sip-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.sip-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-invested {
    background: #d5b046;
}

.dot-return {
    background: #10346ed4;
}

/* ── Calculator Section ── */
.sip-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.sip-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sip-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.sip-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sip-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.sip-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.sip-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .sip-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sip-section {
        padding: 28px 0 40px;
    }

    .sip-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .sip-main-title {
        font-size: 1.3rem;
    }

    .sip-explore-row {
        width: 100%;
    }

    .sip-calc-select {
        flex: 1;
        min-width: unset;
    }

    .sip-left-box {
        padding: 20px 16px 18px;
    }

    .sip-field {
        margin-bottom: 18px;
    }

    .sip-field-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .sip-field-input {
        width: 80px !important;
        font-size: 0.82rem;
        padding: 5px 6px;
        min-width: 0;
    }

    .sip-result-row {
        font-size: 0.85rem;
    }

    .sip-chart-box {
        padding: 16px 14px;
    }

    .sip-chart-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .sip-pie-circle {
        width: 160px;
        height: 160px;
    }

    .sip-bar-wrap {
        height: 190px;
    }

    .sip-legend {
        gap: 14px;
        margin-top: 10px;
    }

    .sip-legend-item {
        font-size: 0.75rem;
    }
}

.sip-left-box {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 32px 28px 28px;
}

.sip-field {
    margin-bottom: 24px;
}

.sip-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.sip-field-label span {
    color: #333 !important;
}

.sip-field-input {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #111 !important;
    background: #fff !important;
    width: 110px;
    text-align: right;
}

.sip-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #d5b046 0%, #d5b046 var(--pct, 0%), #d0d5dd var(--pct, 0%), #d0d5dd 100%);
    outline: none;
    cursor: pointer;
}

.sip-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.sip-slider::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.sip-results {
    border-top: 1px solid #e8eaed;
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sip-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #444 !important;
}

.sip-result-row span {
    color: #444 !important;
}

.sip-result-value {
    font-weight: 600;
    color: #111 !important;
}

.sip-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sip-chart-box {
    background: #fff;
    border: 1.5px solid #d5b046;
    border-radius: 12px;
    padding: 24px 20px;
}

.sip-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.sip-chart-title-left {
    text-align: left;
}

.sip-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.sip-pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #d5b046 180deg, #111111 0deg);
    transition: background 0.4s ease;
}

.sip-bar-wrap {
    position: relative;
    height: 230px;
}

.sip-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.sip-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.sip-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-invested {
    background: #d5b046;
}

.dot-return {
    background: #111;
}


.swp-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.swp-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.swp-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.swp-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.swp-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.swp-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.swp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .swp-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .swp-section {
        padding: 28px 0 40px;
    }

    .swp-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .swp-main-title {
        font-size: 1.3rem;
    }

    .swp-explore-row {
        width: 100%;
    }

    .swp-calc-select {
        flex: 1;
        min-width: unset;
    }

    .swp-left-box {
        padding: 20px 16px 18px;
    }

    .swp-field {
        margin-bottom: 18px;
    }

    .swp-field-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .swp-field-input {
        width: 80px !important;
        font-size: 0.82rem;
        padding: 5px 6px;
        min-width: 0;
    }

    .swp-result-row {
        font-size: 0.85rem;
    }

    .swp-chart-box {
        padding: 16px 14px;
    }

    .swp-chart-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .swp-pie-circle {
        width: 160px;
        height: 160px;
    }

    .swp-bar-wrap {
        height: 190px;
    }

    .swp-legend {
        gap: 14px;
        margin-top: 10px;
    }

    .swp-legend-item {
        font-size: 0.75rem;
    }
}

.swp-left-box {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 32px 28px 28px;
}

.swp-field {
    margin-bottom: 24px;
}

.swp-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.swp-field-label span {
    color: #333 !important;
}

.swp-field-input {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #111 !important;
    background: #fff !important;
    width: 110px;
    text-align: right;
}

.swp-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #d5b046 0%, #d5b046 var(--pct, 0%), #d0d5dd var(--pct, 0%), #d0d5dd 100%);
    outline: none;
    cursor: pointer;
}

.swp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.swp-slider::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.swp-results {
    border-top: 1px solid #e8eaed;
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.swp-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #444 !important;
}

.swp-result-row span {
    color: #444 !important;
}

.swp-result-value {
    font-weight: 600;
    color: #111 !important;
}

.swp-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swp-chart-box {
    background: #fff;
    border: 1.5px solid #d5b046;
    border-radius: 12px;
    padding: 24px 20px;
}

.swp-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.swp-chart-title-left {
    text-align: left;
}

.swp-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.swp-pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #d5b046 180deg, #111111 0deg);
    transition: background 0.4s ease;
}

.swp-bar-wrap {
    position: relative;
    height: 230px;
}

.swp-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.swp-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.swp-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-invested {
    background: #d5b046;
}

.dot-return {
    background: var(--clr-navyblue);
}

.calc-heading {

    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title-calc {
    background: black;
    padding: 15px;
    border-radius: 30px;
    width: 300px;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 20px;
}

.title-calc a {
    text-decoration: none;
    color: white;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.calc-card {
    width: 255px;
    height: 196px;
    background: whitesmoke;
    border-radius: 15px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.calc-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    gap: 10px;
    text-decoration: none;
    color: black;
    width: 100%;
    height: 100%;
}

.calc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 50%;
    width: 65px;
    height: 65px;
}

.calc-icon img {
    width: 50px;
    height: 50px;
    padding: 8px;
}

@media (max-width:991px) {
    .calc-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   RETIREMENT CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.ret-section {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.ret-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ret-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.ret-explore-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ret-explore-label {
    font-size: 13px;
    color: #444;
    line-height: 1.2;
    text-align: right;
}

.ret-calc-select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    min-width: 180px;
    outline: none;
}

.ret-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .ret-layout {
        grid-template-columns: 1fr;
    }
}

.ret-left-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ret-field {
    margin-bottom: 25px;
}

.ret-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ret-field-label span {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.ret-field-input {
    width: 80px;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #69a197;
}

.ret-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    position: relative;
}

.ret-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #000 0%, #000 var(--pct, 0%), #e0e0e0 var(--pct, 0%), #e0e0e0 100%);
    border-radius: 5px;
}

.ret-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    margin-top: -6px;
}

.ret-results {
    margin-top: 30px;
    padding-top: 10px;
}

.ret-result-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}

.ret-result-label {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.ret-result-value {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.ret-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ret-chart-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ret-chart-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.ret-pie-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 20px;
}

.ret-pie-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#111111 0% 12%, #69a197 12% 100%);
    transition: background 0.3s ease;
}

.ret-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.ret-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.ret-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.dot-current {
    background-color: var(--clr-primary);
}

.dot-future {
    background-color: #10346ed4;
}

.dot-year {
    background-color: #f0f0f0;
    color: #999;
}

.ret-bar-wrap {
    width: 100%;
    height: 300px;
}

.chart-labels-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}

.label-with-dot {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

/* ──────────────────────────────────────────────────────────────────────────
   STP CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.stp-main-box {
    padding: 60px 0;
    background-color: #f5f7f9;
}

.stp-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.stp-title-txt {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.stp-nav-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stp-nav-hint {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    text-align: right;
}

.stp-tool-pick {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    min-width: 180px;
}

.stp-two-col {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .stp-two-col {
        flex-direction: column;
    }
}

.stp-card-left {
    flex: 1.2;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.stp-row-input {
    margin-bottom: 25px;
}

.stp-row-lbl-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.stp-lbl-txt {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.stp-num-box {
    background: #f9fbfb;
    border: 1px solid #f0f4f4;
    padding: 5px 12px;
    border-radius: 6px;
    width: 120px;
}

.stp-num-val {
    border: none;
    background: transparent;
    width: 100%;
    text-align: right;
    font-weight: 700;
    color: #72b1c4;
    font-size: 15px;
    outline: none;
}

.stp-range-sldr {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 5px;
    outline: none;
}

.stp-range-sldr::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.stp-res-table {
    margin-top: 35px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.stp-res-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
}

.stp-res-item:last-child {
    border-bottom: none;
}

.stp-res-lbl {
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

.stp-res-val {
    font-weight: 800;
    color: #000;
    font-size: 18px;
}

.stp-card-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.stp-viz-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stp-viz-tit {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.stp-pie-wrap {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stp-pie-obj {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #72b1c4 0% 50%, #000 50% 100%);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stp-bar-wrap {
    height: 280px;
    position: relative;
}

.stp-key-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.stp-key-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.stp-key-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .stp-card-left {
        padding: 25px;
    }

    .stp-title-txt {
        font-size: 22px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   LIFE INSURANCE CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.ins-main-wrap {
    background: #f5f7f9;
    padding: 60px 0;
    min-height: calc(100vh - 70px);
}

.ins-calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.ins-calc-title {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.ins-calc-nav-grp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ins-calc-nav-hint {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    text-align: right;
}

.ins-calc-picker {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.ins-two-col {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .ins-two-col {
        flex-direction: column;
    }
}

.ins-card-left {
    flex: 1.1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    width: 100%;
}

.ins-inp-row {
    margin-bottom: 24px;
}

.ins-inp-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ins-inp-lbl {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    flex: 1;
    padding-right: 10px;
}

.ins-inp-box {
    background: #f9fbfb;
    border: 1px solid #f0f4f4;
    padding: 5px 12px;
    border-radius: 6px;
    width: 130px;
    flex-shrink: 0;
}

.ins-inp-num {
    border: none;
    background: transparent;
    width: 100%;
    text-align: right;
    font-weight: 700;
    color: #72b1c4;
    font-size: 15px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.ins-range-sldr {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 5px;
    outline: none;
}

.ins-range-sldr::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.ins-res-table {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.ins-res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}

.ins-res-row:last-child {
    border-bottom: none;
}

.ins-res-lbl {
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

.ins-res-val {
    font-weight: 800;
    color: #000;
    font-size: 18px;
}

.ins-card-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.ins-viz-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.ins-viz-tit {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.ins-pie-wrap {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ins-pie-obj {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    transition: background 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.ins-key-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ins-key-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.ins-key-dot {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    flex-shrink: 0;
}

.ins-bar-wrap {
    height: 280px;
    position: relative;
}

@media (max-width: 600px) {
    .ins-card-left {
        padding: 24px;
    }

    .ins-calc-title {
        font-size: 18px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   STEP-UP SIP CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.sup-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.sup-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.sup-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    margin: 0;
    text-transform: uppercase;
}

.sup-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sup-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.sup-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    -webkit-appearance: auto;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.sup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .sup-layout {
        grid-template-columns: 1fr;
    }
}

.sup-left-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.sup-field {
    margin-bottom: 32px;
}

.sup-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}

.sup-field-input-box {
    background: #f9fbfb;
    border: 1px solid #f0f4f4;
    border-radius: 6px;
    padding: 4px 12px;
    min-width: 80px;
    text-align: right;
}

.sup-field-input {
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #7FB8AD;
    font-weight: 600;
    width: 100%;
    text-align: right;
    outline: none;
}

.sup-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #eef2f2;
    outline: none;
    cursor: pointer;
    position: relative;
}

.sup-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    border: none;
}

.sup-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    border: none;
}

.sup-results {
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sup-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #444;
}

.sup-result-value {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.sup-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sup-chart-box {
    background: #fff;
    border: 1px solid #cbe0dd;
    border-radius: 12px;
    padding: 24px 20px;
}

.sup-chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 24px;
}

.sup-chart-title-left {
    text-align: left;
}

.sup-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.sup-pie-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #72afd3 0% 50%, #000000 50% 100%);
    transition: background 0.4s ease;
}

.sup-bar-wrap {
    position: relative;
    height: 250px;
}

.sup-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
}

.sup-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
}

.sup-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.sup-dot-invested {
    background: var(--clr-navyblue);
}

.sup-dot-growth {
    background: var(--clr-primary);
}

@media (max-width: 600px) {
    .sup-main-title {
        font-size: 1.4rem;
    }

    .sup-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sup-calc-select {
        width: 100%;
    }

    .sup-left-box {
        padding: 20px;
    }

    .sup-pie-circle {
        width: 180px;
        height: 180px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   RETIREMENT CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.ret-section {
    padding: 60px 0;
    background: #f8fafd;
}

.ret-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ret-main-title {
    font-size: 22px;
    font-weight: 800;
    color: #000;
}

.ret-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 991px) {
    .ret-layout {
        grid-template-columns: 1fr;
    }
}

.ret-left-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ret-field {
    margin-bottom: 25px;
}

.ret-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ret-field-label span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ret-field-input {
    width: 80px;
    padding: 4px 10px;
    border: 1px solid #eee;
    background: #f9fbfb;
    border-radius: 6px;
    text-align: right;
    font-weight: 700;
    color: var(--primary-teal);
    outline: none;
}

.ret-slider {
    /* -webkit-appearance: none; */
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 5px;
    outline: none;
    background-image: linear-gradient(var(--primary-dark), var(--primary-dark));
    background-size: var(--pct, 0%) 100%;
    background-repeat: no-repeat;
}

.ret-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ret-results {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ret-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ret-result-label {
    font-size: 15px;
    color: #555;
}

.ret-result-value {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.ret-right-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ret-chart-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ret-chart-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.ret-pie-wrap {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-dark) 0% 30%, var(--primary-teal) 30% 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease;
}

.ret-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ret-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.ret-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.dot-current {
    background: var(--primary-dark);
}

.dot-future {
    background: var(--primary-teal);
}

.chart-labels-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.label-with-dot {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-dark);
}

.ret-bar-wrap {
    height: 300px;
    position: relative;
}

/* ──────────────────────────────────────────────────────────────────────────
   CROREPATI CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.cro-main-wrap {
    background: #f5f7f9;
    padding: 60px 0;
    min-height: calc(100vh - 70px);
}

.cro-calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.cro-calc-title {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.cro-calc-nav-grp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cro-calc-nav-hint {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    text-align: right;
}

.cro-calc-picker {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.cro-two-col {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .cro-two-col {
        flex-direction: column;
    }
}

.cro-card-left {
    flex: 1.1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    width: 100%;
}

.cro-inp-row {
    margin-bottom: 24px;
}

.cro-inp-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cro-inp-lbl {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    flex: 1;
    padding-right: 10px;
}

.cro-inp-box {
    background: #f9fbfb;
    border: 1px solid #f0f4f4;
    padding: 5px 12px;
    border-radius: 6px;
    width: 130px;
    flex-shrink: 0;
}

.cro-inp-num {
    border: none;
    background: transparent;
    width: 100%;
    text-align: right;
    font-weight: 700;
    color: #72b1c4;
    font-size: 15px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.cro-range-sldr {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 5px;
    outline: none;
}

.cro-range-sldr::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.cro-res-table {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.cro-res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cro-res-row:last-child {
    border-bottom: none;
}

.cro-res-lbl {
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

.cro-res-val {
    font-weight: 800;
    color: #000;
    font-size: 18px;
}

.cro-card-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.cro-viz-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.cro-viz-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.cro-pie-wrap {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cro-pie-obj {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    transition: background 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.cro-legend-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.cro-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.cro-legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cro-bar-wrap {
    height: 280px;
    position: relative;
}

@media (max-width: 600px) {
    .cro-card-left {
        padding: 24px;
    }

    .cro-calc-title {
        font-size: 18px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   LUMPSUM CALCULATOR STYLES
   ────────────────────────────────────────────────────────────────────────── */
.lum-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.lum-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lum-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.lum-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lum-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.lum-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    -webkit-appearance: auto;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.lum-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.lum-left-box {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 32px 28px 28px;
}

.lum-field {
    margin-bottom: 24px;
}

.lum-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.lum-field-label span {
    color: #333 !important;
}

.lum-field-input {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #111 !important;
    background: #fff !important;
    width: 110px;
    text-align: right;
}

.lum-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #d5b046 0%, #d5b046 var(--pct, 0%), #d0d5dd var(--pct, 0%), #d0d5dd 100%);
    outline: none;
    cursor: pointer;
}

.lum-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.lum-results {
    border-top: 1px solid #e8eaed;
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lum-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #444 !important;
}

.lum-result-row span {
    color: #444 !important;
}

.lum-result-value {
    font-weight: 600;
    color: #111 !important;
}

.lum-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lum-chart-box {
    background: #fff;
    border: 1.5px solid #d5b046;
    border-radius: 12px;
    padding: 24px 20px;
}

.lum-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.lum-chart-title-left {
    text-align: left;
}

.lum-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.lum-pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #d5b046 180deg, #111111 0deg);
    transition: background 0.4s ease;
}

.lum-bar-wrap {
    position: relative;
    height: 230px;
}

.lum-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.lum-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.lum-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .lum-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .lum-section {
        padding: 28px 0 40px;
    }

    .lum-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .lum-main-title {
        font-size: 1.3rem;
    }

    .lum-explore-row {
        width: 100%;
    }

    .lum-calc-select {
        flex: 1;
        min-width: unset;
    }

    .lum-left-box {
        padding: 20px 16px 18px;
    }

    .lum-field {
        margin-bottom: 18px;
    }

    .lum-field-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .lum-field-input {
        width: 80px !important;
        font-size: 0.82rem;
        padding: 5px 6px;
        min-width: 0;
    }

    .lum-result-row {
        font-size: 0.85rem;
    }

    .lum-chart-box {
        padding: 16px 14px;
    }

    .lum-chart-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .lum-pie-circle {
        width: 160px;
        height: 160px;
    }

    .lum-bar-wrap {
        height: 190px;
    }

    .lum-legend {
        gap: 14px;
        margin-top: 10px;
    }

    .lum-legend-item {
        font-size: 0.75rem;
    }
}

.blogs-section {
    padding: 40px 0;
    background: #fbfbfb;
}

.blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-small-title {
    color: #72afaa;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.blogs-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.blogs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-featured-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    padding: 20px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.blog-content {
    padding: 25px 35px 35px;
}

.blog-featured-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-side-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-horizontal {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 240px 1fr;
    height: calc(50% - 10px);
}

.blog-side-image {
    padding: 15px;
    overflow: hidden;
}

.blog-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog-side-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-horizontal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }

    .blog-card-horizontal {
        grid-template-columns: 200px 1fr;
        height: auto;
    }

    .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-card-horizontal {
        grid-template-columns: 1fr;
    }

    .blog-side-image {
        height: 200px;
    }

    .blogs-main-title {
        font-size: 30px;
    }

    .blog-featured-card h3,
    .blog-card-horizontal h3 {
        font-size: 20px;
    }
}

/* New Modern Blog Layout */
.blog-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-v2-card {
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-v2-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-v2-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-v2-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-v2-card:hover .blog-v2-img-wrapper img {
    transform: scale(1.1);
}

.blog-v2-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #7FB8AD;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-v2-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-v2-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-v2-card:hover .blog-v2-content h3 {
    color: #72afaa;
}

.blog-v2-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .blog-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-v2-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-v2-img-wrapper {
        height: 240px;
    }
}

.blogs-inner-main-title {
    font-size: 39px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-align: left;
    align-items: center;
    padding: 20px;
}

.blogs-inner-date {
    font-size: 15px;
    line-height: 1.5;
    color: #131314;
    max-width: 90%;
    padding-left: 20px;
}

.blogs-inner-image img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    padding: 20px;
}

.blogs-inner-content h4 {
    font-size: 20px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-align: left;
    align-items: center;
    padding-left: 20px;
}

.blogs-inner-content p {
    font-size: 15px;
    line-height: -0.5;
    color: #131314;
    max-width: 100%;
    padding-left: 20px;
}

.blogs-inner-small-title {
    text-align: left;
    align-items: left;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.fin-hel-section {
    background: #ffffff;
    text-align: center;
    align-items: center;
    line-height: 1.6;
}

.fin-srt-btn {
    display: inline-block;
    background: var(--clr-navyblue);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fin-srt-btn:hover {
    background: #080909;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 175, 170, 0.2);
}

.fin-hel-col p {
    line-height: 1.8;
    font-size: 20px;
    padding-bottom: 20px;

}

.fin-hel-col h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.fin-hel-col span {
    color: #72afaa;
}

@media screen and (max-width: 768px) {
    .fin-hel-col h2 {
        font-size: 30px;
    }

    .fin-hel-col p {
        font-size: 16px;
    }

    .fin-srt-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.privacy-inner-text {
    font-size: 16px;
    line-height: 1.6;
    color: #0f0f10;
    margin-top: 60px;
}

.privacy-text h3 {
    font-size: 24px;
    font-weight: 550;
    color: #111827;
    margin-bottom: 20px;
    margin-top: 20px;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #0f0f10;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .privacy-text h3 {
        font-size: 20px;
    }

    .privacy-text p {
        font-size: 14px;
    }
}

.founder-section {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(213, 176, 70, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.founder-left {
    position: relative;
    /* padding-right: 20px; */
    padding-left: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.founder-left img {
    width: 100%;
    height: 100%;
    /* max-height: 660px;
    max-width: 500px; */
    border-radius: 20px;
}


.founder-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.founder-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d5b046;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.founder-right h2 {
    font-size: 26px;
    font-weight: 500;
    color: #10346e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.founder-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
    position: relative;
}

.founder-right p:last-of-type {
    margin-bottom: 35px;
}

.read-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #10346e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(16, 52, 110, 0.15);
    width: fit-content;
}

.read-btn:hover {
    background: #d5b046;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(213, 176, 70, 0.3);
}

.founder-right a {
    display: block;
    margin: 0;
    text-align: left;
}

@media screen and (max-width: 991px) {
    .founder-right {
        padding-left: 0;
        margin-top: 50px;
    }

    .founder-left {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-right h2 {
        font-size: 28px;
    }

    .founder-right p {
        font-size: 16px;
    }
}


/* ── Top bar ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.topbar-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111;
    text-transform: uppercase;
}

.topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.topbar-right label {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0px;
}

.explorer-select {
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    font-size: 0.88rem;
    color: #222;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    min-width: 180px;
    cursor: pointer;
}

/* ── Main grid ── */
.main {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 24px;
    padding: 25px 0;
}

/* ── Left panel ── */
.left-panel {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.field {
    margin-bottom: 18px;
}

.field-label {
    font-size: 0.88rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}

.field-row {
    display: flex;
    align-items: center;
}

.slider-track {
    flex: 1;
    margin-right: 12px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: #222;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.num-input {
    width: 80px;
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 0.9rem;
    color: var(--clr-navyblue);
    text-align: center;
    outline: none;
    font-family: inherit;
    background: #fff;
}

.num-input.wide {
    width: 130px;
    text-align: left;
    padding-left: 10px;
}

.num-input:focus {
    border-color: var(--clr-primary);
}

.divider {
    height: 1px;
    background: #e5e5e5;
    margin: 20px 0;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 0.85rem;
    color: #444;
}

.result-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

/* ── Right panel ── */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chart-card {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

@media (max-width: 900px) {
    .main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .main {
        padding: 15px;
        gap: 15px;
    }

    .left-panel,
    .chart-card {
        padding: 20px 15px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .topbar-right {
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }

    .explorer-select {
        width: 100%;
    }
}

.chart-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
    text-align: center;
}

.pie-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.pie-canvas-wrap {
    width: 200px;
    height: 200px;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
}

.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

.bar-canvas-wrap {
    width: 100%;
    height: 200px;
}

/* ── Top bar ── */
.edu-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.edu-topbar-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
    color: #111;
    text-transform: uppercase;
}

.edu-topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.edu-topbar-right label {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0;
}

.edu-explorer-select {
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    font-size: 0.88rem;
    color: #222;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    min-width: 180px;
    cursor: pointer;
}

/* ── Main grid ── */
.edu-main {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 24px;
    padding: 25px 0;
}

/* ── Left panel ── */
.edu-left-panel {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.edu-field {
    margin-bottom: 18px;
}

.edu-field-label {
    font-size: 0.88rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}

.edu-field-row {
    display: flex;
    align-items: center;
}

.edu-slider-track {
    flex: 1;
    margin-right: 12px;
}

input[type="range"].edu-range {
    /* -webkit-appearance: none; */
    width: 100%;
    height: 3px;
    background: #222;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

input[type="range"].edu-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.edu-num-input {
    width: 80px;
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 0.9rem;
    color: var(--clr-navyblue);
    text-align: center;
    outline: none;
    font-family: inherit;
    background: #fff;
}

.edu-num-input.edu-wide {
    width: 130px;
    text-align: left;
    padding-left: 10px;
}

.edu-num-input:focus {
    border-color: var(--clr-primary);
}

.edu-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 20px 0;
}

.edu-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}

.edu-result-row:last-child {
    border-bottom: none;
}

.edu-result-label {
    font-size: 0.85rem;
    color: #444;
}

.edu-result-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

/* ── Right panel ── */
.edu-right-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.edu-chart-card {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

@media (max-width: 900px) {
    .edu-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .edu-main {
        padding: 15px;
        gap: 15px;
    }

    .edu-left-panel,
    .edu-chart-card {
        padding: 20px 15px;
    }

    .edu-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .edu-topbar-right {
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }

    .edu-explorer-select {
        width: 100%;
    }
}

.edu-chart-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
    text-align: center;
}

.edu-pie-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.edu-pie-canvas-wrap {
    width: 200px;
    height: 200px;
}

.edu-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edu-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
}

.edu-legend-box {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

.edu-bar-canvas-wrap {
    width: 100%;
    height: 200px;
}

/* ── EMI Calculator Section ── */
.emi-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.emi-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.emi-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.emi-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.emi-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.emi-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.emi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* ── Tablet: stack columns ── */
@media (max-width: 900px) {
    .emi-layout {
        grid-template-columns: 1fr;
    }

    .emi-right-stack {
        gap: 16px;
    }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .emi-section {
        padding: 28px 0 40px;
    }

    .emi-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .emi-main-title {
        font-size: 1.3rem;
    }

    .emi-explore-row {
        width: 100%;
    }

    .emi-calc-select {
        flex: 1;
        min-width: unset;
    }

    .emi-left-box {
        padding: 20px 16px 18px;
    }

    .emi-field {
        margin-bottom: 18px;
    }

    .emi-field-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .emi-field-input {
        width: 80px !important;
        font-size: 0.82rem;
        padding: 5px 6px;
        min-width: 0;
    }

    .emi-result-row {
        font-size: 0.85rem;
    }

    .emi-chart-box {
        padding: 16px 14px;
    }

    .emi-chart-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }

    .pie-circle {
        width: 160px;
        height: 160px;
    }

    .emi-bar-wrap {
        height: 190px;
    }

    .emi-legend {
        gap: 14px;
        margin-top: 10px;
    }

    .emi-legend-item {
        font-size: 0.75rem;
    }
}



.emi-left-box {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 32px 28px 28px;
}

.emi-field {
    margin-bottom: 24px;
}

.emi-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.emi-field-label span {
    color: #333 !important;
}

.emi-field-input {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #111 !important;
    background: #fff !important;
    width: 110px;
    text-align: right;
}

.emi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #10346e 0%, #10346e var(--pct, 0%), #d0d5dd var(--pct, 0%), #d0d5dd 100%);
    outline: none;
    cursor: pointer;
}

.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.emi-slider::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #111;
}

.emi-results {
    border-top: 1px solid #e8eaed;
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emi-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #444 !important;
}

.emi-result-row span {
    color: #444 !important;
}

.emi-result-value {
    font-weight: 600;
    color: #111 !important;
}

.emi-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emi-chart-box {
    background: #fff;
    border: 1.5px solid #10346e;
    border-radius: 12px;
    padding: 24px 20px;
}

.emi-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.emi-chart-title-left {
    text-align: left;
}

.emi-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #10346e 180deg, #d5b046 0deg);
    transition: background 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-circle::after {
    content: '';
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.emi-bar-wrap {
    position: relative;
    height: 230px;
}

.emi-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.emi-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.emi-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-principal {
    background: #10346e;
}

.dot-interest {
    background: #d5b046;
}

/* ── House Planning Calculator Section ── */
.house-section {
    padding: 48px 0 64px;
    background: #f7f8fa;
}

.house-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.house-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.house-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.house-explore-label {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.house-calc-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    min-width: 160px;
}

.house-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* ── Tablet: stack columns ── */
@media (max-width: 900px) {
    .house-layout {
        grid-template-columns: 1fr;
    }

    .house-right-stack {
        gap: 16px;
    }
}

/* ── Mobile ── */
/* ── House Planning Section ── */
.house-section {
    padding: 30px 0 60px;
    background: #fff;
}

.house-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0px;
}

.house-main-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    margin: 0;
    text-transform: uppercase;
}

.house-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.house-explore-label {
    font-size: 0.82rem;
    color: #555;
    white-space: nowrap;
    text-align: right;
}

.house-calc-select {
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    font-size: 0.88rem;
    color: #222;
    background: #fff;
    cursor: pointer;
    min-width: 180px;
}

.house-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 24px;
    padding: 25px 0;
}

.house-left-box {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.house-field {
    margin-bottom: 18px;
}

.house-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #333 !important;
    font-weight: 400;
    margin-bottom: 8px;
}

.house-field-input {
    width: 90px;
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 0.9rem;
    color: var(--clr-navyblue);
    text-align: center;
    background: #fff;
}

.house-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #222;
    outline: none;
}

.house-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.house-results {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding-top: 20px;
}

.house-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.house-result-row:last-child {
    border-bottom: none;
}

.house-result-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.house-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.house-chart-box {
    background: #fff;
    border: 1.5px solid #10346e;
    border-radius: 12px;
    padding: 24px 20px;
}

.house-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.house-chart-title-left {
    text-align: left;
}

.house-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.pie-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #10346e 180deg, #d5b046 0deg);
    transition: background 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-circle::after {
    content: '';
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.house-bar-wrap {
    position: relative;
    height: 230px;
}

.house-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.house-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.house-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-current {
    background: #10346e;
}

.dot-future {
    background: #d5b046;
}

/* ── Vacation Planning Section ── */
.vacation-section {
    padding: 30px 0 60px;
    background: #fff;
}

.vacation-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0px;
}

.vacation-main-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    margin: 0;
    text-transform: uppercase;
}

.vacation-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacation-explore-label {
    font-size: 0.82rem;
    color: #555;
    white-space: nowrap;
    text-align: right;
}

.vacation-calc-select {
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    font-size: 0.88rem;
    color: #222;
    background: #fff;
    cursor: pointer;
    min-width: 180px;
}

.vacation-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 24px;
    padding: 25px 0;
}

.vacation-left-box {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.vacation-field {
    margin-bottom: 18px;
}

.vacation-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #333 !important;
    font-weight: 400;
    margin-bottom: 8px;
}

.vacation-field-input {
    width: 90px;
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 0.9rem;
    color: var(--clr-navyblue);
    text-align: center;
    background: #fff;
}

.vacation-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #222;
    outline: none;
}

.vacation-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.vacation-results {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding-top: 20px;
}

.vacation-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.vacation-result-row:last-child {
    border-bottom: none;
}

.vacation-result-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.vacation-right-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vacation-chart-box {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.vacation-chart-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
    text-align: center;
}

.vacation-chart-title-left {
    text-align: left;
}

.vacation-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vacation-bar-wrap {
    width: 100%;
    height: 200px;
}

.vacation-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.vacation-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
}

.vacation-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 2px;
}

.dot-current {
    background: #10346ed4;
}

.dot-future {
    background: #d5b046;
}

@media (max-width: 900px) {

    .house-layout,
    .vacation-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .main,
    .edu-main,
    .house-layout,
    .vacation-layout,
    .car-layout {
        padding: 15px;
        gap: 15px;
    }
}

/* ── Car Planning Section ── */
.car-section {
    padding: 30px 0 60px;
    background: #fff;
}

.car-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0px;
}

.car-main-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    margin: 0;
    text-transform: uppercase;
}

.car-explore-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.car-explore-label {
    font-size: 0.82rem;
    color: #555;
    white-space: nowrap;
    text-align: right;
}

.car-calc-select {
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    font-size: 0.88rem;
    color: #222;
    background: #fff;
    cursor: pointer;
    min-width: 180px;
}

.car-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 24px;
    padding: 25px 0;
}

.car-left-box {
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.car-field {
    margin-bottom: 18px;
}

.car-field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #333 !important;
    font-weight: 400;
    margin-bottom: 8px;
}

.car-field-input {
    width: 90px;
    border: 1.5px solid var(--clr-navyblue);
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 0.9rem;
    color: var(--clr-navyblue);
    text-align: center;
    background: #fff;
}

.car-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #222;
    outline: none;
}

.car-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.car-results {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding-top: 20px;
}

.car-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.car-result-row:last-child {
    border-bottom: none;
}

.car-right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.car-chart-box {
    background: #fff;
    border: 1.5px solid #10346e;
    border-radius: 12px;
    padding: 24px 20px;
}

.car-chart-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.car-pie-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.car-bar-wrap {
    position: relative;
    height: 230px;
}

.car-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.car-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444;
}

.car-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dot-current {
    background: #10346e;
}

.dot-future {
    background: #d5b046;
}

@media (max-width: 900px) {

    .house-layout,
    .vacation-layout,
    .car-layout,
    .ret-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .main,
    .edu-main,
    .house-layout,
    .vacation-layout,
    .car-layout,
    .ret-layout {
        padding: 15px;
        gap: 15px;
    }

    .car-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 20px;
    }

    .car-explore-row {
        width: 100%;
        justify-content: space-between;
    }

    .car-main-title {
        font-size: 1.25rem;
    }
}

/* ========== RISK ASSESSMENT MODAL STYLES ========== */
.risk-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.risk-modal-overlay.active {
    display: flex;
}

.risk-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    position: relative;
    padding: 30px;
}

.risk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.risk-modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.risk-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.risk-form-group {
    margin-bottom: 15px;
}

.risk-form-group input,
.risk-form-group textarea {
    width: 100%;
    border: 1.5px solid #d0d0d0;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.95rem;
    outline: none;
}

.risk-captcha-box {
    border: 1.5px solid #d0d0d0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    margin-bottom: 20px;
}

.risk-captcha-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #bbb;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.risk-captcha-checkbox.checked {
    background: #4a9590;
    border-color: #4a9590;
}

.risk-captcha-checkbox.checked::after {
    content: '✓';
    color: #fff;
    position: absolute;
    left: 4px;
    top: -2px;
}

.risk-submit-btn {
    width: 100%;
    background: #d5b046;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
}

.risk-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Financial Health Monitor Styles */
#questionsSection,
#formSection {
    display: none;
}

.assessment-container {
    max-width: 900%;
    margin: 40px auto;
    padding: 15px 15px;
    position: relative;
    z-index: 100;
}

.assessment-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.assessment1-card {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.9;
}

.intro-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.0;
}

.question-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-navyblue, #10346e);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-ans {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 45px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 140px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-ans:hover {
    background: #d5b046;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 176, 70, 0.3);
}

.progress-wrapper {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    background: #d5b046;
    transition: width 0.6s ease;
}

.details-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.btn-top-back {
    background: transparent;
    color: #4a90e2;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.btn-top-back:hover {
    color: #d5b046;
}

@media (max-width: 768px) {
    .assessment-container {
        padding: 0 10px;
    }

    .assessment-card {
        padding: 40px 20px;
    }

    .question-text {
        font-size: 1.3rem;
    }
}

/* .content-side h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--clr-text);
} */

.content-side span.highlight {
    color: var(--clr-primary);
}

.content-side .sub-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-navyblue);
    margin-bottom: 40px;

}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    display: inline-block;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item i {
    width: 32px;
    height: 32px;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.eligibility-box {
    border: 1.5px solid #0a65de;
    border-left: 5px solid gold;
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    text-align: left;
    background: #fff;
}

.eligibility-box .elig-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    border-right: 1.5px solid #e2e8f0;
    padding-right: 20px;
}

.eligibility-box .elig-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text);
}

.eligibility-box .elig-value span {
    color: var(--clr-primary);
}

.form-card {
    background: var(--clr-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-control,
.form-select {
    padding: 12px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fcfcfc;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(114, 175, 170, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(114, 175, 170, 0.2);
}

.submit-btn:hover {
    background: var(--clr-navyblue);
    color: #fff;
}

@media (max-width: 768px) {
    .content-side h3 {
        font-size: 2.5rem;
    }

    .eligibility-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .eligibility-box .elig-label {
        border-right: none;
        padding-right: 0;
        border-bottom: 1.5px solid #e2e8f0;
        padding-bottom: 5px;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

.whatsapp-float i {
    font-size: 35px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}