
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
background: linear-gradient(to bottom right, #fffaf3, #f2efe7);
  color: #333;
}

header {
  background: #fdfdfd;
  color: #fff;
  padding: 1em 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 1em;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav a {
  background-color: #fff;
  color: #000512;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 0.5em;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #dbe2ff;
}

.hero {
  text-align: center;
  padding: 4em 1em;
}

.hero h2 {
  font-size: 2.5em;
  color: #000000;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 1em auto;
}

section {
  padding: 2em 1em;
  max-width: 1100px;
  margin: auto;
}

section h3 {
  text-align: center;
  font-size: 1.8em;
  color: #0e1731;
  margin-bottom: 1em;
}

.tile-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tile {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1.5em 1em;
  text-align: center;
  transition: transform 0.2s;
}

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

.tile img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 0.8em;
}

.tile h4 {
  margin: 0.5em 0 0.2em;
  color: #001450;
}

.tile p {
  font-size: 0.95em;
}

footer {
  text-align: center;
  padding: 2em 1em;
  background: #000;
  color: #fff;
}

.cta-button {
  display: inline-block;
  background-color: #e6e6e6;
  color: #000;
  padding: 0.75em 1.5em;
  margin-top: 2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #a8a8aae8;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1em;
}
.trust {
  padding: 3em 1em;
 
  text-align: center;
}

.trust h3 {
  font-size: 1.8em;
  color: #0e1731;
  margin-bottom: 2em;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-logos img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s;
}

.trust-logos img:hover {
  transform: scale(1.05);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 2em auto;
  padding: 0 1em;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #3759be;
  top: 0;
  bottom: 0;
  left: 30px;
  margin-left: -2px;
}

.timeline-item {
  margin: 2em 0;
  position: relative;
  padding-left: 60px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #3759be;
  top: 5px;
  left: 22px;
  z-index: 1;
}

.timeline-date {
  font-weight: bold;
  color: #3759be;
  margin-bottom: 0.5em;
}

.timeline-content {
  background: #fff;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.news img {
  max-width: 50%;
  border-radius: 6px;
  margin-bottom: 0.8em;
  align-items: center;
}

  .stars {
      position: absolute;
      width: 100%;
      height: 100% ;
      background: transparent;
      background: radial-gradient(rgb(49, 46, 46) 1px, transparent 1px);
      background-size: 20px 20px;
      animation: moveStars 30s linear infinite;
      z-index: 0;
      opacity: 0.2;
      pointer-events: none;
    }

    @keyframes moveStars {
      0% { background-position: 0 0; }
      100% { background-position: 1000px 1000px; }
    }
.investor-video {
  max-width: 50%;
  width: 50%;
  height: 50%;
  border-radius: 8px;
  margin: 2em auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
