/* ====== GROW YOUR SCHOOL SECTION ====== */

.grow-section {
  background-color: #f9fafc;
  padding-bottom: 60px;
}

.grow-banner {
  position: relative;
  text-align: center;
}

.grow-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(110%);
}

.grow-intro {
  text-align: center;
  padding: 40px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.grow-intro h1 {
  font-size: 2.8rem;
  color: #083358;
  margin-bottom: 10px;
  font-weight: 700;
}

.grow-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.grow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.grow-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.grow-card:hover {
  transform: translateY(-5px);
}

/* ===== IMAGE SECTION ===== */
.grow-image {
  flex: 1;
  min-width: 50%;
  position: relative;
}

.grow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT SECTION ===== */
.grow-content {
  flex: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grow-content h2 {
  font-size: 1.6rem;
  color: #083358;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.grow-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.grow-content i {
  color: #0a4a7a;
  font-size: 1.3rem;
}

/* ====== BUTTON STYLE ====== */
.view-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background-color: #0a4a7a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.view-btn:hover {
  background-color: #0c5c98;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 900px) {
  .grow-card {
    flex-direction: column;
  }

  .grow-image {
    width: 100%;
    height: 250px;
  }

  .grow-content {
    padding: 25px;
    text-align: center;
  }

  .grow-content h2 {
    justify-content: center;
  }

  .view-btn {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .grow-intro h1 {
    font-size: 2rem;
  }

  .grow-banner img {
    height: 280px;
  }

  .grow-container {
    gap: 20px;
  }

  .grow-content {
    padding: 20px;
  }

  .grow-image {
    height: 220px;
  }
}
