.funds-header {
    background-color: #f2f2f2;
    font-family: "iransans";
    color: #343646;
    padding: 70px 0px;
  }
  
  .funds-header-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  
  #dnn_fundsHeaderTitle p {
    font-size: 22px !important;
    color: #0a9e4c !important;
    font-weight: 500 !important;
  }
  
  #dnn_fundsHeaderSubTitle p {
    font-size: 32px !important;
    color: inherit !important;
    font-weight: 700 !important;
  }
  
  #dnn_fundsHeaderDesc p {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    max-width: 665px;
  }
  
  .funds-header-links-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  @media (max-width: 992px) {
    .funds-header-links-wrapper {
      justify-content: center;
    }
  }
  
  .funds-header-links-wrapper .funds-header-link:nth-child(1) {
    padding: 10px 28px;
    border-radius: 10px;
    background-color: #014086;
    color: white !important;
    transition: all 0.2s ease-in;
    border: 1px solid #014086;
  }
  
  .funds-header-links-wrapper .funds-header-link:nth-child(2) {
    padding: 10px 28px;
    border-radius: 10px;
    background-color: #0a9e4c;
    color: white !important;
    transition: all 0.2s ease-in;
    border: 1px solid #0a9e4c;
  }
  
  .funds-header-links-wrapper .funds-header-link:nth-child(1):hover {
    transition: all 0.2s ease-in;
    background-color: transparent;
    color: #014086 !important;
  }
  
  .funds-header-links-wrapper .funds-header-link:nth-child(2):hover {
    transition: all 0.2s ease-in;
    background-color: transparent;
    color: #0a9e4c !important;
  }
  
  @media (min-width: 576px) {
    .funds-header-link {
      cursor: pointer;
    }
  }
  
  .funds-header-left {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .funds-header-left img {
    max-height: 460px;
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .funds-header-left img {
      max-height: 300px;
      max-width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 991.98px) {
    .funds-header {
      height: auto;
      padding: 24px 0;
    }
    .funds-header-right {
      align-items: center;
      text-align: center;
    }
    .funds-header-left {
      justify-content: center;
      margin-bottom: 20px;
    }
    #dnn_fundsHeaderTitle p {
      font-size: 20px !important;
    }
    #dnn_fundsHeaderSubTitle p {
      font-size: 26px !important;
    }
    #dnn_fundsHeaderDesc p {
      font-size: 15px;
      max-width: 100%;
    }
  }
  
  @media (max-width: 1400px) {
    #dnn_fundsHeaderTitle p {
      font-size: 16px !important;
    }
    #dnn_fundsHeaderSubTitle p {
      font-size: 22px !important;
    }
    #dnn_fundsHeaderDesc p {
      font-size: 13px;
      max-width: 100%;
    }
  }
  
  .fund-card {
    margin: -3% 0px 20px 0px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 992px) {
    .fund-card {
      margin: -1% 0px 20px 0px;
    }
  }
  
  .fund-card-inner {
    display: flex;
    flex-direction: column;
  }
  
  .fund-card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
  }
  
  @media (max-width: 1200px) {
    .fund-card-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
    }
    .fund-card-info h2{
        text-align: center;
    }
  }
  
  @media (max-width: 337px) {
    .fund-card-header {
      justify-content: center;
    }
  }
  
  .fund-card-logo img,
  .fund-card-logo svg {
    width: 100%;
    height: 80px;
    object-fit: contain;
  }
  
  .fund-card-info h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #333;
  }
  
  .fund-card-social {
    display: flex;
    margin-top: 10px;
  }
  
  .fund-card-social a {
    font-size: 20px;
    color: #767676 !important;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0 12px;
    border-right: 1px solid #ddd;
  }
  
  .fund-card-social a:first-child {
    padding-right: 0;
    border-right: none;
  }
  
  .fund-card-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 0;
  }
  
  .stat {
    text-align: center;
    padding: 0 18px;
    border-right: 1px solid #ddd;
  }
  
  .stat:first-child {
    padding-right: 0;
    border-right: none;
  }
  
  .stat-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a7f5a;
  }
  
  .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 4px;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  
  .mobile-only a {
    padding: 0 12px;
    border-right: 1px solid #ddd;
  }
  
  .mobile-only a:first-child {
    border-right: none;
  }
  
  /* 📱 ریسپانسیو */
  @media (min-width: 992px) {
    .fund-card-inner {
      flex-direction: column;
      gap: 36px;
      align-items: center;
      justify-content: space-between;
    }
    .fund-card-stats {
      grid-template-columns: repeat(4, 1fr);
    }
    .desktop-only {
      display: flex;
    }
    .mobile-only {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .fund-card-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat {
      border-right: none;
    }
  }
  
  @media (max-width: 480px) {
    .stat-label {
      margin-bottom: 16px;
    }
  }
  
  @media (min-width: 1400px) {
    .fund-card-inner {
      flex-direction: row;
      gap: 0px;
      align-items: center;
      justify-content: space-between;
    }
  }
  
  .fund-gold {
    width: 100%;
    padding-top: 100px;
  }
  
  .fund-gold__title {
    font-size: 24px;
    font-weight: 800;
    color: #3a2b8f;
    margin-bottom: 28px;
    text-align: right;
  }
  
  .fund-gold__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .fund-gold__item {
    width: 100%;
    background: #fff;
    border: 0.5px solid #e0e9fa;
    min-height: 182px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  
  .fund-gold__right {
    display: flex;
    align-items: center;
    gap: 42px;
  }
  
  .fund-gold__item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .fund-gold__icon {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #014086;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: visible;
  }
  
  /* حلقه اول (رینگ بیرونی محو شونده) */
  .fund-gold__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(1, 64, 134, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    animation: ringWave 2s infinite ease-out;
    z-index: 1;
  }
  
  /* حلقه دوم (با تأخیر برای موج بعدی) */
  .fund-gold__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(1, 64, 134, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    animation: ringWave 4s infinite ease-out;
    animation-delay: 1s;
    z-index: 1;
  }
  
  /* انیمیشن حلقه‌های موجی */
  @keyframes ringWave {
    0% {
      transform: translate(-50%, -50%) scale(0.7);
      opacity: 0.5;
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 0;
    }
  }
  
  .fund-gold__icon img {
    width: 34px;
    height: 34px;
  }
  
  .fund-gold__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  
  .fund-gold__item-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: rgb(26 10 59 / var(--tw-text-opacity));
  }
  
  @media (max-width: 400px) {
    .fund-gold__item-title {
      font-size: 14px !important;
    }
  }
  
  .fund-gold__item-desc {
    margin-bottom: 0px;
    font-size: 14px !important;
    color: #666;
    line-height: 1.7;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 767px) {
    .fund-gold__item {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
  }
  
  .fund-value {
    display: flex;
    gap: 4px;
  }
  
  .fund-value p {
    font-weight: 800;
    font-size: 20px !important;
  }
  .fund-risk {
    direction: rtl;
    font-family: "iransans", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    position: relative;
  }
  
  .fund-risk__track {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px;
    height: 90px;
  }
  
  .fund-risk__track::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#099e4c 76%, #e5e5e5 0);
    transform: rotate(180deg);
    mask: radial-gradient(circle at center, transparent 64%, black 65%);
  }
  
  .fund-risk__dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f3f3f3;
    border-radius: 50%;
    transform-origin: center 60px;
    border: 1px solid #e0e9fa;
    transition: all 0.3s ease;
  }
  
  .fund-risk__dot:nth-child(2) {
    bottom: -6%;
    width: 20px;
    padding: 11px;
    height: 20px;
    color: #404040;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }
  .fund-risk__dot:nth-child(3) {
    bottom: 46%;
    left: -8%;
    width: 20px;
    padding: 11px;
    height: 20px;
    color: #404040;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }
  
  .fund-risk__dot:nth-child(4) {
    top: -10%;
    width: 20px;
    padding: 11px;
    height: 20px;
    color: #404040;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }
  
  .fund-risk__dot:nth-child(5) {
    bottom: 46%;
    right: -8%;
    width: 20px;
    padding: 11px;
    height: 20px;
    color: #404040;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }
  
  .fund-risk__dot--active {
    width: 20px;
    padding: 11px;
    height: 20px;
    background: #099e4c;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(14, 246, 64, 0.4);
    z-index: 5;
  }
  
  .fund-risk__labels {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
  }
  
  @media (max-width: 768px) {
    .fund-value p {
      font-size: 16px !important;
    }
  }
  
  /* -------------------------
       Funds Calculator Section
    ------------------------- */
  .funds-calculator {
    font-family: "IRANSans", sans-serif;
    direction: rtl;
    padding-top: 100px;
  }
  
  /* layout based on Bootstrap */
  .funds-calculator .funds-chart-box,
  .funds-calculator .funds-controls-box {
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    box-sizing: border-box;
  }
  
  /* ==== Chart Box ==== */
  .funds-chart-box {
    background-color: #f2f2f2; /* رنگ روشن جدید */
    color: #014086;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  }
  
  .funds-chart-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #014086;
  }
  
  .funds-chart-canvas {
    position: relative;
    height: 340px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  
  /* ==== Summary (زیر چارت) ==== */
  .funds-summary {
    text-align: center;
    color: #014086;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 120px;
  }
  
  .funds-summary p {
    font-size: 16px !important;
    margin-bottom: 2rem !important;
  }
  
  .funds-summary span {
    font-weight: 700;
    color: #444;
  }
  
  #summary-khalij {
    color: #0a9e4c !important;
  }
  
  #summary-bank,
  #summary-bourse,
  #summary-dollar,
  #summary-coin,
  #summary-inflation {
    color: #014086 !important;
  }
  /* ==== Controls Box ==== */
  .funds-controls-box {
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  }
  
  .funds-controls-title {
    font-size: 21px;
    font-weight: 800;
    color: #014086;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .funds-controls-desc {
    font-size: 14px;
    text-align: center;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  
  .funds-input-group {
    margin-bottom: 28px;
    padding: 44px;
    background-color: #f9fafc;
    border: 0.5px solid #e0e9fa;
    border-radius: 10px;
  }
  
  .funds-input-group label {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #014086;
  }
  
  .funds-input-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 5px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    transition: background 0.3s ease;
  }
  
  .funds-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background-color: #014086;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .funds-input-group input[type="range"]::-webkit-slider-thumb:hover {
    background-color: #0a9e4c;
  }
  
  @media (max-width: 576px) {
    .funds-input-group input[type="range"]::-webkit-slider-thumb {
      width: 20px;
      height: 20px;
    }
    .funds-input-group label {
      font-size: 14px;
    }
  }
  .funds-value {
    font-size: 16px;
    color: #555;
    margin-top: 14px;
  }
  
  .funds-value span {
    font-weight: 700;
    color: #014086;
  }
  
  /* ==== Responsive ==== */
  @media (max-width: 992px) {
    .funds-calculator {
      margin: 80px 0;
    }
  
    .funds-chart-box,
    .funds-controls-box {
      margin-bottom: 20px;
      height: auto;
    }
  }
  
  .funds-calculator_svg {
    display: inline;
    width: 22px;
    height: 22px;
    fill: #014086;
    stroke: #014086;
    transition: all 0.3s ease-in;
  }
  
  .funds-calculator_svg:hover {
    display: inline;
    fill: #0a9e4c !important;
    stroke: #0a9e4c !important;
    transition: all 0.3s ease-in;
  }
  
  .funds-calculator_svg--clock {
    display: inline;
    width: 22px;
    height: 22px;
    stroke: #014086;
    transition: all 0.3s ease-in;
  }
  .funds-calculator_svg--clock:hover {
    stroke: #0a9e4c !important;
    transition: all 0.3s ease-in;
  }
  
  /* -------------------------
       Funds Performance Section (Compact Slim Version)
    ------------------------- */
  .funds-performance-section {
    direction: rtl;
    color: #fff;
    font-family: "iransans", sans-serif;
    overflow: hidden;
    padding-top: 100px;
  }
  
  .funds-performance-bg {
    background: #014086
      url(/Portals/_default/Skins/glend/resource/theme-assests/img/aboutus-bg.png)
      no-repeat;
    background-size: auto 100%;
    background-position: right;
  }
  
  .funds-performance-inner {
    display: flex;
    justify-content: center;
  }
  
  .funds-performance-container {
    width: 100%;
    max-width: 1180px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  @media (max-width: 992px) {
    .funds-performance-container {
      margin-right: 0px;
    }
  }
  .funds-performance-text {
    flex: 1;
    text-align: right;
    color: #fff;
  }
  
  .funds-performance-title {
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    color: #fff !important;
  }
  
  .funds-performance-value {
    flex: 1;
    text-align: center;
  }
  
  .funds-performance-number {
    font-size: 112px;
    font-weight: 800;
    display: inline-block;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
  
  .funds-performance-line {
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    border-radius: 100%;
    filter: blur(1.5px);
  }
  
  /* ==== Responsive ==== */
  @media (max-width: 992px) {
    .funds-performance-inner {
      padding: 25px 0;
    }
  
    .funds-performance-container {
      flex-direction: column-reverse;
      text-align: center;
      gap: 16px;
    }
  
    .funds-performance-title {
      font-size: 16px;
      text-align: center;
    }
  
    .funds-performance-number {
      font-size: 32px;
    }
  }
  
  /* -------------------------
       Funds Performance Line Chart
    ------------------------- */
  .funds-performance-chart {
    background: #f2f2f2
      url("/Portals/_default/Skins/glend/resource/theme-assests/img/investment-bg.png")
      no-repeat;
    background-size: auto 100%;
    direction: rtl;
    font-family: "iransans", sans-serif;
    padding: 100px 0;
  }
  
  @media (max-width: 992px) {
    .funds-performance-chart {
      background: #f2f2f2
        url("/Portals/_default/Skins/glend/resource/theme-assests/img/investment-bg.png")
        no-repeat;
      background-size: auto 100%;
      direction: rtl;
      font-family: "iransans", sans-serif;
      padding: 60px 0;
      margin: 80px 0;
    }
  }
  
  .funds-performance-chart .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .funds-chart-title {
    font-size: 21px;
    font-weight: 800;
    color: #014086;
    margin-bottom: 50px;
    line-height: 36px;
  }
  
  .funds-chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .funds-returns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .funds-return-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 600;
  }
  
  .funds-return-label {
    color: #333;
  }
  
  .funds-return-value.up {
    color: #0a9e4c;
  }
  
  .fund-box {
    border-right: 4px solid #0a9e4c;
  }
  
  .bank-box {
    border-right: 4px solid #014086;
  }
  
  .funds-range-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .funds-range-tabs .tab {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .funds-range-tabs .tab:hover {
    background-color: #e9e9e9;
  }
  
  .funds-range-tabs .tab.active {
    background-color: #014086;
    color: #fff;
    border-color: #014086;
  }
  
  .funds-chart-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
  }
  
  .funds-chart-box canvas {
    width: 100%;
    height: 420px;
  }
  
  /* === Responsive === */
  @media (max-width: 992px) {
    .funds-chart-controls {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  
    .funds-range-tabs {
      justify-content: center;
      width: 100%;
    }
  
    .funds-return-box {
      font-size: 13px;
    }
  }
  
  /* ----------------------------
       Funds Assets Section (Donut)
    ---------------------------- */
  .funds-assets-section {
    font-family: "iransans", sans-serif;
    direction: rtl;
    padding-top: 100px;
  }
  
  @media (max-width: 576px) {
    .funds-assets-section {
      padding: 25px 0;
    }
  }
  
  .assets-wrapper {
    padding-block: 50px;
    display: flex;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #f2f2f2
      url("/Portals/_default/Skins/glend/resource/theme-assests/img/investment-bg.png")
      no-repeat;
    background-size: auto 100%;
  }
  
  /* ==== Chart Box ==== */
  .assets-chart-box {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .assets-chart-box .chart-title,
  .assets-chart-box .chart-desc,
  .funds-chart-box .chart-title,
  .funds-chart-box .chart-desc,
  .funds-chart-canvas .chart-title,
  .funds-chart-canvas .chart-desc {
    display: none;
  }
  
  .chart-container {
    border: none !important;
    box-shadow: none !important;
  }
  
  .assets-chart-box canvas {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 2;
  }
  
  .chart-center {
    position: absolute;
    text-align: center;
    color: #014086;
    background-color: #f7f9fc;
    border-radius: 50%;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
  }
  
  .chart-center .center-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .chart-center .center-value {
    font-size: 26px;
    font-weight: 800;
    color: #0a9e4c;
  }
  
  /* ==== Labels ==== */
  .assets-labels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .asset-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }
  
  .asset-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .color-bank {
    background-color: #0a9e4c;
  }
  
  .color-other {
    background-color: #014086;
  }
  
  .asset-name {
    color: #014086;
    font-weight: 600;
    font-size: 13px;
  }
  
  .asset-value {
    color: #0a9e4c;
    font-weight: 700;
    font-size: 13px;
    margin-right: auto;
  }
  
  /* ==== Responsive ==== */
  @media (max-width: 992px) {
    .assets-wrapper {
      flex-direction: column-reverse;
      gap: 20px;
    }
    .assets-chart-box {
      width: 280px;
      height: 280px;
    }
    .chart-center {
      width: 150px;
      height: 150px;
    }
    .assets-labels {
      flex-direction: row;
      justify-content: center;
    }
  
    .assets-labels {
      margin-bottom: 22px;
    }
  }
  
  @media (max-width: 400px) {
    .assets-chart-box {
      width: 240px;
      height: 240px;
    }
  
    .assets-title-wrapper {
      padding-inline: 30px;
    }
  }
  
  .funds-assets-wrapper {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }
  
  .assets-title-wrapper {
    padding-block: 30px;
    font-family: "iransans", sans-serif;
    border-bottom: 3px solid #014086;
  }
  
  .funds-assets-title {
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    color: #014086;
    text-align: center;
    margin-bottom: 20px;
    line-height: 36px;
  }
  
  .funds-assets-desc {
    font-size: 14px;
    color: #444;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1.8;
    text-align: center;
  }
  
  .funds-form-section {
    padding: 100px 0;
  }
  
  #dnn_fundPageForm {
    width: 77%;
    margin-inline: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }
  
  @media (max-width: 576px) {
    #dnn_fundPageForm {
      margin: 25px 0px;
      margin-inline: auto;
    }
  }
  
  .captcha-refresh {
    margin-left: 5px !important;
  }
  
  #LiveForm1643 ul {
    background-color: transparent !important;
  }
  
  #LiveForm1643 input {
    background-color: rgb(250, 250, 250, 0.8);
    outline: none !important;
  }
  
  #dnn_ctr1643_View_Textarea_1643_5 {
    background-color: rgb(250, 250, 250, 0.8) !important;
    outline: none !important;
  }
  
  .causesValidation {
    background-color: #014086 !important;
    padding: 12px 28px !important;
    border-radius: 10px !important;
    color: white !important;
    font-family: "iransans" !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    transition: all 0.2s ease-in !important;
    border: 1px solid #014086 !important;
  }
  
  #dnn_ctr1643_View_Submitbutton_1643_7:hover {
    background-color: transparent !important;
    color: #014086 !important;
    transition: all 0.2s ease-in !important;
  }
  
  @media (max-width: 576px) {
    #dnn_fundPageForm {
      width: 100%;
    }
  }
  
  .LiveForm h2 {
    font-family: "iransans", sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #014086 !important;
    text-align: center !important;
    border: none !important;
  }
  
  .LiveForm p {
    font-size: 14px;
    color: #444;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1.8;
    text-align: center;
  }
  
  /* Funds Table Section */
  
  .funds-table {
    width: 100%;
    border-radius: 10px;
    direction: rtl;
    font-family: "iransans", sans-serif;
    padding-top: 100px;
  }
  
  .funds-table__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .funds-table__head {
    background-color: #004e66;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .funds-table__row--head th {
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: #fff;
    padding: 14px 10px;
    white-space: nowrap;
    background-color: #014086 !important;
  }
  
  .funds-table__row td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 14px;
    color: #333;
  }

.funds-table__row td p{
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
  
  .funds-table__cell--name {
    font-weight: 600;
  }
  
  .funds-table__badge {
    display: inline-block;
    font-weight: 600;
    color: #444;
    border-radius: 14px;
    padding: 5px 14px;
    font-size: 16px;
    line-height: 1.8;
  }
  
  .funds-table__badge-icon {
    max-width: 105px;
    height: auto;
    object-fit: contain;
    margin-left: 20px;
  }
  
  .funds-table__return--positive {
    color: #099e4c;
    font-weight: 600;
  }
  
  .funds-table__return--negative {
    color: #e43e3e;
    font-weight: 600;
  }
  
  .funds-table__btn {
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-radius: 6px;
    padding: 6px 14px;
    transition: 0.25s ease;
  }
  
  .funds-table__btn--buy {
    background-color: #014086;
    border: 1px solid #014086;
    color: #fff !important;
    font-weight: 500;
    transition: 0.25s ease;
  }
  
  .funds-table__btn--buy:hover {
    background-color: transparent;
    transition: 0.25s ease;
    color: #014086 !important;
  }
  
  .funds-table__btn--more {
    color: #005dc7 !important;
    text-decoration: none;
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.9;
  }
  
  @media (max-width: 768px) {
    .funds-table__head {
      display: none;
    }
  
    .funds-table__table,
    .funds-table__body,
    .funds-table__row,
    .funds-table__cell {
      display: block;
      width: 100%;
    }
  
    .funds-table__row {
      background: #fff;
      margin-bottom: 16px;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 10px 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }
  
    .funds-table__row td {
      text-align: right;
      padding: 6px 0;
      border: none;
      position: relative;
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    .funds-table__row td::before {
      content: attr(data-label);
      display: inline-block;
      font-weight: 600;
      color: #666;
      margin-left: 8px;
      min-width: 110px;
    }
  
    .funds-table__btn {
      margin-top: 8px;
    }
  
    .funds-table__btn--more {
      margin-right: 0;
    }
  
    .funds-table__badge {
      margin-bottom: 4px;
    }
  }
  
  .fund-last-update {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding: 10px;
    border-radius: 20px;
    background-color: #f9fafc;
    border: 0.5px solid #e0e9fa;
  }
  
  .fund-last-update__icon {
    height: 26px;
    fill: #444;
  }
  .fund-last-update__text {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .fund-last-update__date {
    font-size: 14px;
    margin-bottom: 0px;
  }
  
  @media (max-width: 992px) {
    .fund-last-update {
      margin-top: 32px;
    }
  }
  #dnn_content {
    padding-top: 0px !important;
  }
  
  .summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 15px;
    font-size: 11px;
    color: #333;
  }
  
  .summary-khalij--border {
    border: 1px solid #0a9e4c82 !important;
  }
  
  .summary-row div {
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 20px;
    background-color: #f9fafc;
    border: 0.5px solid #e0e9fa;
    gap: 4px;
  }
  
  #percent {
    display: none;
  }
  body.dnnEditState #percent {
    display: block;
  }
  
  @media (max-width: 768px) {
    .funds-table__row td::before {
      content: attr(data-label) " :";
      display: inline-block;
      font-weight: 600;
      color: #666;
      margin-left: 10px;
      min-width: 120px;
      white-space: nowrap;
    }
    /* سلول عملیات */
    .funds-table__cell--actions {
      display: flex;
      gap: 10px;
      margin-top: 8px;
      flex-direction: column;
    }
  
    /* دکمه‌ها */
    .funds-table__cell--actions .funds-table__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      justify-content: center;
    }
  
    /* دکمه سرمایه‌گذاری */
    .funds-table__btn--buy {
      flex: 1;
    }
  
    /* دکمه بیشتر */
    .funds-table__btn--more {
      flex: 0;
      padding: 6px 10px;
    }
  }

.faq-section{
	padding-bottom : 100px;
}
  