* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: white;
      padding: 10px 20px;
      position: relative;
    }

    .logo img {
      height: 70px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #07194c;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links li:hover > a {
      color: #fa8a1e;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #07194c;
      min-width: 180px;
      z-index: 1000;
      padding: 10px 0;
    }

    .dropdown a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background: #07194c;
      color: #a4e6b1;
      padding-left: 25px;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .dropdown a:hover .arrow {
      transform: translateX(4px);
    }

    .apply-btn {
      background: #fa8a1e;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 22px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .apply-btn:hover {
      background: #ffffff;
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      color: #ffffff;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      color: #ffffff;
      background-color: #07194c;
    }

    @media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #07194c;
  }

  .apply-btn {
    margin-top: 20px;
  }
}
.submenu {
  list-style: none;  /* ✅ removes the bullet/dot */
  padding-left: 0;   /* optional: removes left indentation */
}
@media (min-width: 769px) {
  .symbol {
    display: none;
  }
}
.venture-studio {
  padding: 60px 30px;
  background-color: #ffffff;
  text-align: center;
}

.venture-studio h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 20px;
  margin: 20px;
  color: #1e3a8a;
}

.blog-card p {
  font-size: 15px;
  margin: 0 20px 20px;
  color: #444;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 16px;
  background-color: #f97316;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #ea640e;
}

.unique-section {
  padding: 60px 30px;
  background-color: #f8fafc;
  text-align: center;
}

.unique-section h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.unique-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.unique-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.unique-card:hover {
  transform: translateY(-5px);
}

.unique-card i {
  font-size: 36px;
  color: #f97316; /* Orange */
  margin-bottom: 15px;
}

.unique-card h3 {
  font-size: 18px;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.unique-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.site-footer {
  background: #031136;
  color: white;
  padding: 20px 20px;
  font-family: sans-serif;
}

.footer-bottom {
  text-align: center;
  /* margin-top: 40px; */
  border-top: 1px solid #334155;
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
}
