/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.login {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}

.join-button {
  background-color: #4caf50;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.join-button.large {
  margin-top: 1rem;
  display: inline-block;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 1rem;
  color: #222;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
}

.hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Features */
.features {
  background-color: #1e1e1e;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.features-subtitle {
  color: #bbb;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.feature-item {
  background-color: #2c2c2c;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #d3fce9;
}

/* Incubated Startups Section */
.startups {
  background-color: #f7f9fb;
  padding: 3rem 2rem;
  text-align: center;
}

.startups h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.startups-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.startups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.startup-card {
  display: block;
  background-color: #ffffff;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.startup-card:hover {
  background-color: #e0f7f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* About Section */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 2rem;
}

.about-text {
  max-width: 300px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.about-text img {
  margin-bottom: 10px;
}

