.section-wrap {
    padding: 60px 0;
}
.section-bg {
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}
.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.why-us-box {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.why-us-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-us-box .icon {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-right: 20px;
}

.why-us-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0056b3;
    margin: 0;
}
.why-us-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0 0 0;
}
.why-us-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.curriculum-card {
    background: #ffffff;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color, #e0e0e0);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.curriculum-card:hover {
    transform: translateY(-8px); 
    border-color: #ff6b00;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.curriculum-card .icon {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 20px;
}

.curriculum-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 15px;
}

.curriculum-card p {
    color: #666;
    line-height: 1.6;
}
.g-4{
	padding-top:20px;
}


.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ff6b00;
    opacity: 0.3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-container.left { left: 0; }
.timeline-container.right { left: 50%; }

.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #ffffff;
    border: 4px solid #ff6b00;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-container.right::after { left: -10px; }
.timeline-content {
    padding: 20px 25px;
    background-color: #ffffff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.timeline-content h4 {
    font-weight: 600;
    color: #0056b3;
}
.timeline-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}
.timeline-time {
    font-weight: 700;
    color: #ff6b00;
    font-size: 1rem;
}

.nursery-highlight {
    background: #CCF;
    padding: 30px 42px;
    border-radius: 15px;
    margin: -10px 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);
}

.section-header {
    font-size: 26px;
    font-weight: 600;
    color: #ff6f61;
    text-align: left;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
}

.section-header:after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ffc107;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

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

@media screen and (max-width: 768px) {
    .timeline::after { left: 15px; }
    .timeline-container { width: 100%; padding-left: 50px; padding-right: 15px; }
    .timeline-container.left, .timeline-container.right { left: 0; }
    .timeline-container::after { left: 5px; }
}
