
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --g900: #0A2558; --g800: #0D3373; --g700: #1565C0; --g600: #1976D2;
      --g100: #BBDEFB; --g50: #E3F2FD; --gold: #E5A020; --gold-light: #FFF3CD;
      --white: #fff; --gray-50: #F8F9FB; --gray-100: #EEF0F4; --gray-200: #DDE1E9;
      --gray-400: #9AA3B5; --gray-600: #5A6379; --gray-700: #3E4660; --gray-900: #1A1F36;
      --green: #16A34A; --green-bg: #DCFCE7; --red: #DC2626; --red-bg: #FEE2E2;
      --t: .2s ease; --radius: 12px; --shadow: 0 4px 24px rgba(10,37,88,.08);
      --shadow-lg: 0 12px 48px rgba(10,37,88,.14);
    }
    body { font-family: 'Poppins', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

    /* ANN BAR */
    .ann-bar { background: var(--g900); color: rgba(255,255,255,.85); font-size: 12px; text-align: center; padding: 9px 24px; letter-spacing: .3px; }
    .ann-bar strong { color: var(--gold); }
    .ann-bar a { color: var(--gold); text-decoration: underline; }

    /* NAVBAR */
    .navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--t); }
    .navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo img { height: 42px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
    .nav-item { position: relative; }
    .nav-link { display: flex; align-items: center; gap: 5px; padding: 9px 14px; font-size: 13.5px; font-weight: 500; color: var(--gray-700); border-radius: 8px; transition: color var(--t), background var(--t); white-space: nowrap; cursor: pointer; }
    .nav-link:hover, .nav-link.active { color: var(--g700); background: var(--g50); }
    .nav-link.active { font-weight: 600; }
    .nav-chev { width: 12px; height: 12px; transition: transform var(--t); }
    .nav-item:hover .nav-chev { transform: rotate(180deg); }
    .dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity var(--t), transform var(--t); }
    .dropdown::before { content: ''; position: absolute; top: -6px; left: 0; right: 0; height: 6px; }
    .dropdown a { display: block; padding: 10px 18px; font-size: 13px; color: var(--gray-600); transition: background var(--t), color var(--t); cursor: pointer; }
   .dropdown a:hover { background: var(--g50); color: var(--g700); }
    .dropdown::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
    .dropdown a.active-fund { background: var(--g50); color: var(--g700); font-weight: 600; }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: none; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; font-family: inherit; font-weight: 500; font-size: 15px; cursor: pointer; transition: all var(--t); border: 2px solid transparent; }
    .btn-primary { background: var(--g700); border-color: var(--g700); color: #fff; }
    .btn-primary:hover { background: var(--g800); transform: translateY(-1px); }
    .btn-sm { padding: 10px 22px; font-size: 13.5px; }
    .btn-white { background: #fff; color: var(--g700); }
    .btn-white:hover { background: var(--g50); transform: translateY(-1px); }
    .btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }
    .mobile-nav { display: grid; grid-template-rows: 0fr; background: var(--white); border-top: 1px solid var(--gray-100); transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1); overflow: hidden; }
    .mobile-nav.open { grid-template-rows: 1fr; }
    .mobile-nav-inner { overflow: hidden; padding: 0 28px; }
    .mobile-nav.open .mobile-nav-inner { padding: 12px 28px 24px; }
    .mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); transition: color var(--t); }
    .mobile-nav a:hover { color: var(--g700); }
    .mobile-nav .m-cta { margin-top: 16px; }
    .mobile-nav .btn { width: 100%; justify-content: center; }

    /* FUND SELECTOR STRIP */
    .fund-selector-wrap { background: var(--g900); border-bottom: 2px solid rgba(229,160,32,.3); }
    .fund-selector { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
    .fund-selector::-webkit-scrollbar { display: none; }
    .fund-pill { flex-shrink: 0; padding: 12px 20px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.55); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; white-space: nowrap; transition: color var(--t), border-color var(--t); letter-spacing: .2px; }
    .fund-pill:hover { color: rgba(255,255,255,.85); }
    .fund-pill.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }

    /* HERO */
    .fund-hero {
      background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10,37,88,.55) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 55% 0%, rgba(13,51,128,.35) 0%, transparent 60%),
        linear-gradient(140deg, var(--g900) 0%, #0B2F70 55%, #0D3A8C 100%);
      color: #fff; padding: 56px 0 48px; position: relative; overflow: hidden;
    }
    .fund-hero-photo {
      position: absolute; inset: 0; overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 26%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.8) 62%, #000 74%, #000 100%);
      mask-image: linear-gradient(90deg, transparent 0%, transparent 26%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.8) 62%, #000 74%, #000 100%);
    }
    .fund-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 20%; }
    .fund-hero-inner { position: relative; z-index: 2; }
    .fund-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
    .fund-badge.conventional { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; }
    .fund-badge.islamic { background: rgba(22,163,74,.2); border: 1px solid rgba(22,163,74,.4); color: #86efac; }
    #heroTitle { font-size: clamp(22px, 4vw, 36px); font-weight: 700; line-height: 1.25; margin-bottom: 8px; max-width: 700px; }
    #heroTagline { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 28px; max-width: 540px; }
    .fund-hero-metrics { display: flex; flex-wrap: wrap; gap: 12px; }
    .metric-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(6px); border-radius: 12px; padding: 16px 20px; min-width: 130px; }
    .metric-label { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; }
    .metric-val { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.1; }
    .metric-val.gold { color: var(--gold); }
    .metric-sub { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; }

    /* SECTION TABS */
    .section-tabs-wrap { position: sticky; top: 72px; z-index: 100; background: var(--white); border-bottom: 2px solid var(--gray-100); }
    .section-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
    .section-tabs::-webkit-scrollbar { display: none; }
    .section-tab { flex-shrink: 0; padding: 14px 20px; font-size: 13px; font-weight: 500; color: var(--gray-400); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; white-space: nowrap; transition: color var(--t), border-color var(--t); }
    .section-tab:hover { color: var(--g700); }
    .section-tab.active { color: var(--g700); border-bottom-color: var(--g700); font-weight: 600; }

    /* SECTIONS */
    section { scroll-margin-top: 160px; }
    .overview-section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g700); margin-bottom: 8px; }
    .section-title { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--g900); line-height: 1.3; }
    .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .info-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
    .info-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .info-card-icon.blue { background: var(--g50); color: var(--g700); }
    .info-card-icon.gold { background: var(--gold-light); color: #92700a; }
    .info-card h3 { font-size: 15px; font-weight: 600; color: var(--g900); margin-bottom: 10px; }
    .info-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }
    .alloc-bar { margin-top: 16px; }
    .alloc-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-600); margin-bottom: 6px; }
    .alloc-track { height: 8px; border-radius: 4px; background: var(--gray-100); overflow: hidden; }
    .alloc-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--g700), var(--g600)); }
    .alloc-fill.gold-fill { background: linear-gradient(90deg, var(--gold), #F5C842); }
    .alloc-fill.green-fill { background: linear-gradient(90deg, #16A34A, #22C55E); }
    .benchmark-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--g50); color: var(--g700); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px; margin-top: 12px; margin-right: 8px; }

    /* PERFORMANCE */
    .performance-section { padding: 64px 0; background: var(--gray-50); }
    .chart-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
    .chart-controls { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
    .chart-title { font-size: 15px; font-weight: 600; color: var(--g900); }
    .toggle-pills { display: flex; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 3px; gap: 2px; flex-wrap: wrap; }
    .toggle-pill { padding: 6px 14px; font-size: 12.5px; font-weight: 500; color: var(--gray-600); border-radius: 6px; cursor: pointer; background: none; border: none; font-family: inherit; transition: all var(--t); white-space: nowrap; }
    .toggle-pill.active { background: var(--white); color: var(--g700); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
    .chart-wrap { position: relative; height: 320px; }
    .chart-note { font-size: 11.5px; color: var(--gray-400); margin-top: 14px; font-style: italic; }
    .perf-legend { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
    .legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
    .legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .annual-table { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 13px; }
    .annual-table th { background: var(--g900); color: rgba(255,255,255,.85); font-size: 11.5px; font-weight: 600; letter-spacing: .4px; padding: 12px 16px; text-align: left; }
    .annual-table th:not(:first-child) { text-align: right; }
    .annual-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
    .annual-table td:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
    .annual-table tr:nth-child(even) td { background: var(--gray-50); }
    .annual-table .row-label { font-weight: 600; color: var(--g900); }
    .chip { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }
    .chip.positive { background: var(--green-bg); color: var(--green); }
    .chip.negative { background: var(--red-bg); color: var(--red); }
    .no-data-note { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; text-align: center; color: var(--gray-600); font-size: 14px; }

    /* TRACK RECORD */
    .track-section { padding: 64px 0; }
    .track-grid { display: grid; gap: 14px; }
    .track-row { background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 20px 24px; display: grid; grid-template-columns: 120px 1fr 1fr 120px; gap: 16px; align-items: center; box-shadow: 0 2px 8px rgba(10,37,88,.04); transition: box-shadow var(--t), transform var(--t); }
    .track-row:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
    .track-period { font-size: 13px; font-weight: 700; color: var(--g900); }
    .track-bar-label { font-size: 11px; color: var(--gray-400); margin-bottom: 5px; }
    .track-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
    .track-bar-bg { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
    .track-bar-fill { height: 100%; border-radius: 3px; }
    .track-bar-fill.fund { background: var(--g700); }
    .track-bar-fill.bench { background: var(--gray-400); }
    .track-bar-fill.neg { background: var(--red); }
    .track-val { font-size: 12px; font-weight: 600; min-width: 60px; text-align: right; }
    .track-val.fund-color { color: var(--g700); }
    .track-val.bench-color { color: var(--gray-500); }
    .track-out { text-align: right; }
    .track-out-label { font-size: 10.5px; color: var(--gray-400); margin-bottom: 4px; }
    .track-out-val { font-size: 16px; font-weight: 700; }
    .track-out-val.pos { color: var(--green); }
    .track-out-val.neg { color: var(--red); }
    .track-header { display: grid; grid-template-columns: 120px 1fr 1fr 120px; gap: 16px; padding: 0 24px; margin-bottom: 8px; }
    .track-header span { font-size: 11px; font-weight: 600; color: var(--gray-400); letter-spacing: .5px; text-transform: uppercase; }
    .track-header span:last-child { text-align: right; }

    /* DISTRIBUTION */
    .distrib-section { padding: 64px 0; background: var(--gray-50); }
    .distrib-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
    .distrib-note { background: var(--g900); color: #fff; border-radius: var(--radius); padding: 28px; }
    .distrib-note h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: var(--gold); }
    .distrib-note p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 16px; }
    .distrib-stat { background: rgba(255,255,255,.08); border-radius: 8px; padding: 14px 18px; margin-top: 12px; }
    .distrib-stat-val { font-size: 24px; font-weight: 700; color: var(--gold); }
    .distrib-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

    /* FUND INFO */
    .info-section { padding: 64px 0; }
    .info-kv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .info-kv-row { display: grid; grid-template-columns: 1fr 1.2fr; border-bottom: 1px solid var(--gray-100); }
    .info-kv-row:last-child { border-bottom: none; }
    .info-kv-row:nth-child(even) { background: var(--gray-50); }
    .info-key { padding: 14px 20px; font-size: 13px; color: var(--gray-600); font-weight: 500; border-right: 1px solid var(--gray-100); }
    .info-val { padding: 14px 20px; font-size: 13px; color: var(--gray-900); font-weight: 600; }

    /* DOCUMENTS */
    .docs-section { padding: 64px 0; }
    .docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
    .doc-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); transition: box-shadow var(--t), transform var(--t); }
    .doc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
    .doc-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--g50); color: var(--g700); display: flex; align-items: center; justify-content: center; }
    .doc-card h3 { font-size: 14px; font-weight: 600; color: var(--g900); line-height: 1.4; }
    .doc-card p { font-size: 12.5px; color: var(--gray-400); flex: 1; }
    .doc-card a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--g700); }

    /* CTA */
    .cta-band { background: var(--g700); padding: 48px 24px; text-align: center; }
    .cta-band h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 700; color: #fff; margin-bottom: 10px; }
    .cta-band p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* FOOTER */
    .footer { background: var(--g900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
    .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--t); }
    .footer-col ul a:hover { color: #fff; }
    .footer-address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
    .footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 10px; transition: color var(--t); }
    .footer-contact-link svg { width: 15px; height: 15px; flex-shrink: 0; }
    .footer-contact-link:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--t); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

    /* RESPONSIVE */
    @media(max-width: 900px) {
      .overview-grid { grid-template-columns: 1fr; }
      .distrib-layout { grid-template-columns: 1fr; }
      .info-kv-grid { grid-template-columns: 1fr; }
      .track-row { grid-template-columns: 80px 1fr; grid-template-rows: auto auto; }
      .track-row .track-out { grid-column: 2; }
      .track-header { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media(max-width: 768px) {
      .nav-links, .nav-right .btn-sm { display: none; }
      .hamburger { display: flex; }
      .fund-hero { padding: 40px 0 36px; }
      .chart-wrap { height: 240px; }
      .docs-grid { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width: 480px) {
      .track-row { grid-template-columns: 1fr; }
      .track-row .track-out { grid-column: 1; text-align: left; }
      .docs-grid { grid-template-columns: 1fr; }
      .annual-table { font-size: 11px; }
      .annual-table th, .annual-table td { padding: 8px 10px; }
      .chart-wrap { height: 200px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
  
.ip0{font-size:11.5px !important; color:var(--gray-400) !important; margin-top:16px !important; font-style:italic !important}
.ip1{cursor:pointer !important}
.ip2{margin-top:24px !important}