
/* Cards & Sections */
.cards {display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-top:20px;}
.card {background:#fff; border-radius:15px; box-shadow:0 5px 20px rgba(0,0,0,0.1); padding:30px; text-align:center; transition:0.3s;}
.card:hover {transform:translateY(-10px); box-shadow:0 10px 30px rgba(0,0,0,0.2);}
.card h3 {color:#1a73e8; font-size:1.3rem; margin-bottom:15px;}
.card p {color:#555; font-size:1rem; line-height:1.5;}

/* Inner Section */
.innersection-wrap{
    padding: 60px 0;
    background-size: cover;
    text-align: center;
}
.innersection-wrap h2{
    margin-bottom:30px;
    color:#1a73e8;
}
.background-section{
    background-color:#f0f4ff;
}
.nursery-highlight {
    background: #9CF;
    padding: 60px 40px;
    border-radius: 15px;
    margin: -50px auto;
    max-width: 1000px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.nursery-highlight h2 {
    text-align: center;
    color: #f57c00;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.nursery-highlight p {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.nursery-highlight ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}
.nursery-highlight ul li {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nursery-highlight ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:768px){
    .nursery-highlight h2 {font-size: 1.8rem;}
    .nursery-highlight ul {grid-template-columns: 1fr;}
}

.nursery-highlight-img {
    background: #6CF;
    padding: 60px 40px;
    border-radius: 15px;
    margin: -50px auto;
    max-width: 1000px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nursery-highlight-img .highlight-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nursery-highlight-img .highlight-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.container.two-column {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
}

/* Columns */
.nursery-left,
.nursery-right {
  flex: 1 1 50%;
  background: #fefefe;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Headings */


/* Success Stories list */
.nursery-left ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 15px 0;
}

.nursery-left ul li {
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
}

.nursery-left ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}
/* Routine styling */
.nursery-right .routine div {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  margin: 5px 0;
  border-radius: 6px;
  background: #f0f8ff;
  font-size: 14px;
}

.nursery-right .routine div span {
  color: #ff6f61;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 800px) {
  .container.two-column {
    flex-direction: column;
  }

  .nursery-left,
  .nursery-right {
    flex: 1 1 100%;
  }
}
