body {
  font-family: 'Open Sans', sans-serif;
  color: #000080;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Headings and Logo */
h1, h2, h3, .logo, .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Navbar styling */
.navbar {
    width: 100%;
    background-color: #000080; /* your theme color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* smaller size */
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #1d2d44;
    border-radius: 4px;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1d2d44;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-content {
        position: static;
    }
}





.about-banner-section {
  padding: 50px 30px;
  background-color: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
}

.about-banner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.about-banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.about-banner-content {
  max-width: 600px;
}

.about-banner-content h2 {
  font-size: 2rem;
  color: #1a1a5e;
  margin-bottom: 15px;
}

.about-banner-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.timeline-section {
  text-align: center;
  margin-top: 20px;
}

.show-timeline-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: #1a1a5e;
  cursor: pointer;
  margin-bottom: 20px;
}

.timeline-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 40px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.timeline-year {
  font-size: 2.5rem;
  color: #1a1a5e;
  font-weight: bold;
}

.timeline-divider {
  width: 1px;
  height: 60px;
  background-color: #ccc;
}

.timeline-company {
  font-size: 1.2rem;
  text-align: left;
  color: #1a1a5e;
}

.timeline-company span {
  font-size: 1rem;
  color: #666;
}

.timeline-description {
  font-size: 1rem;
  color: #333;
  margin-top: 20px;
}


.funds-protection {
  padding: 60px 30px;
  background-color: #f9f9fc;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.funds-protection h2 {
  font-size: 2rem;
  color: #001c60;
  margin-bottom: 40px;
}

.funds-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.funds-column {
  max-width: 600px;
  width: 100%;
}

.fund-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.fund-item img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 4px;
}

.fund-item p {
  font-size: 1rem;
  color: #001c60;
  line-height: 1.6;
}


.support-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.support-content {
  flex: 1 1 45%;
  max-width: 600px;
}

.support-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #001c60;
  text-transform: uppercase;
}

.support-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #001c60;
}

.support-content a {
  color: #001c60;
  text-decoration: none;
}

.support-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.support-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.support-content ul li::before {
  content: "•";
  color: #00d184;
  position: absolute;
  left: 0;
}

.support-btn {
  display: inline-block;
  background-color: #00d184;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.support-btn:hover {
  background-color: #00d184;
}

.support-image {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
}

.support-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
