* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.45;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 94%);
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #111827;
  color: #fff;
  font-size: 13px;
}

.top-bar a {
  color: #fff;
}

.top-bar-inner {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HEADER */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
  width: auto;
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu > a,
.nav-item > a {
  position: relative;
  display: block;
  padding: 21px 10px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav-item > a::after {
  content: "▼";
  font-size: 9px;
  margin-left: 5px;
  color: #6b7280;
}

.nav-menu > a:hover,
.nav-item > a:hover {
  color: #0b3c91;
}

.nav-menu > a::before,
.nav-item > a::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 13px;
  height: 2px;
  background: #16a34a;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s;
}

.nav-menu > a:hover::before,
.nav-item > a:hover::before {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 9999;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown a {
  display: block;
  padding: 9px 11px;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
}

.dropdown a:hover {
  background: #eef4ff;
  color: #0b3c91;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  border: none;
  background: #0b3c91;
  color: #fff;
  font-size: 21px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* HERO */
.hero {
  background:
    linear-gradient(90deg, rgba(11,60,145,0.92), rgba(11,60,145,0.72)),
    url("../../images/1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 42px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 11px;
  border-radius: 25px;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.hero p {
  max-width: 620px;
  font-size: 15px;
  color: #eef4ff;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 17px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.22s;
}

.btn.primary {
  background: #16a34a;
  color: #fff;
}

.btn.primary:hover {
  background: #11823b;
}

.btn.secondary {
  background: #fff;
  color: #0b3c91;
}

.btn.secondary:hover {
  background: #eef4ff;
}

.btn.white {
  background: #fff;
  color: #0b3c91;
}

.hero-card {
  background: #fff;
  color: #111827;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.hero-card h3 {
  margin-bottom: 12px;
  color: #0b3c91;
  font-size: 18px;
}

.hero-card a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  background: #f3f6fb;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.hero-card a:hover {
  background: #0b3c91;
  color: #fff;
}

/* COMMON SECTION */
.section {
  padding: 42px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title span,
.small-title {
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.section-title h2,
.about-grid h2 {
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 5px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.07);
  transition: 0.22s;
  border: 1px solid #e5e7eb;
  min-height: 190px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.11);
}

.product-card img {
  height: 78px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.product-card h3 {
  color: #0b3c91;
  margin-bottom: 6px;
  font-size: 17px;
}

.product-card p {
  color: #4b5563;
  font-size: 14px;
}

/* ABOUT */
.about-section {
  background: #fff;
  padding: 42px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.about-grid p {
  margin: 11px 0;
  color: #4b5563;
  font-size: 14px;
}

.stats-box {
  display: grid;
  gap: 12px;
}

.stat {
  background: #f5f7fb;
  border-left: 4px solid #16a34a;
  padding: 15px;
  border-radius: 9px;
}

.stat h3 {
  color: #0b3c91;
  margin-bottom: 4px;
  font-size: 17px;
}

.stat p {
  margin: 0;
  font-size: 13px;
}

/* CHARTS */
.chart-section {
  background: #f5f7fb;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.chart-card {
  background: #fff;
  min-height: 270px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.07);
}

#profitChart,
#aumChart {
  width: 100%;
  height: 245px;
}

/* CTA */
.cta {
  background: #0b3c91;
  color: #fff;
  padding: 32px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta h2 {
  font-size: 25px;
}

.cta p {
  color: #dbeafe;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 11px;
  font-size: 15px;
}

.footer a,
.footer p {
  display: block;
  color: #d1d5db;
  font-size: 13px;
  margin-bottom: 7px;
}

.footer a:hover {
  color: #16a34a;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  margin-top: 25px;
  padding: 14px 0;
  font-size: 13px;
}

.footer-bottom p {
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .nav-menu > a,
  .nav-item > a {
    padding: 21px 7px;
    font-size: 13px;
  }

  .logo img {
    height: 44px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a,
  .nav-item > a {
    padding: 11px 20px;
    display: block;
  }

  .nav-item > a::after {
    float: right;
  }

  .nav-menu > a::before,
  .nav-item > a::before {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #f3f6fb;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  .hero-inner,
  .about-grid,
  .chart-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 35px 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 3px;
    padding: 6px 0;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 42px;
  }

  .hero-card {
    padding: 16px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .cta h2 {
    font-size: 22px;
  }
}
/* INNER PAGE HERO */
.inner-hero {
  background:
    linear-gradient(90deg, rgba(11,60,145,0.94), rgba(11,60,145,0.74)),
    url("../../images/building-off.jpg") center/cover no-repeat;
  color: #fff;
  padding: 42px 0;
}

.inner-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 8px 0;
}

.inner-hero p {
  max-width: 720px;
  font-size: 15px;
  color: #eef4ff;
}

/* ABOUT PAGE */
.about-page-grid {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 24px;
  align-items: start;
}

.side-menu {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 82px;
}

.side-menu h3 {
  background: #0b3c91;
  color: #fff;
  font-size: 16px;
  padding: 11px 13px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.side-menu a {
  display: block;
  padding: 10px 12px;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  border-radius: 7px;
  margin-bottom: 5px;
  background: #f5f7fb;
}

.side-menu a:hover,
.side-menu a.active {
  background: #16a34a;
  color: #fff;
}

.content-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
}

.content-card h2 {
  color: #0f172a;
  font-size: 30px;
  margin: 6px 0 14px;
}

.content-card p {
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 13px;
  text-align: justify;
}

.content-card strong {
  color: #0b3c91;
}

@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .side-menu {
    position: static;
  }

  .content-card {
    padding: 20px;
  }
}
.team-list {
  display: grid;
  gap: 16px;
}

.team-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #16a34a;
  border-radius: 10px;
  padding: 18px;
}

.team-card h3 {
  color: #0b3c91;
  font-size: 20px;
  margin-bottom: 3px;
}

.team-card span {
  display: inline-block;
  color: #16a34a;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.team-card p {
  margin-bottom: 9px;
}
.governance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}

.governance-table thead {
    background: #0b3c91;
    color: #fff;
}

.governance-table th,
.governance-table td {
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.governance-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.governance-table tbody tr:hover {
    background: #eef4ff;
}
.policy-list{
    margin-top:12px;
    margin-left:20px;
}

.policy-list li{
    margin-bottom:8px;
    line-height:1.6;
}
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div {
  background: #f5f7fb;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.trust-grid h3 {
  color: #0b3c91;
  font-size: 22px;
  margin-bottom: 2px;
}

.trust-grid span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
