
        
        :root {
            --primary: #1a5276;
            --secondary: #3498db;
            --accent: #f39c12;
            --light: #f5f5f5;
            --dark: #2c3e50;
            --success: #27ae60;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
   
     
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover {
            background-color: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Services Section */
        .services-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .services-intro h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .services-intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--dark);
        }
        
        .school-sections {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-self: center;
            display:flex;
    place-items: center;        /* Centers both horizontally and vertically */
    min-height: 100vh;
    justify-content: center;
        }
        
        .school-card {
            width: 500px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            justify-content: center;
        }
        
        .school-card:hover {
            transform: translateY(-10px);
        }
        
        .school-header {
            padding: 25px;
            color: white;
            text-align: center;
        }
        
        .primary-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        .nursery-header {
            background: linear-gradient(135deg, #e74c3c, #e67e22);
        }
        
        .school-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .school-header p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .school-content {
            padding: 25px;
        }
        
        .service-item {
            margin-bottom: 25px;
        }
        
        .service-item h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .service-icon {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .service-item p {
            color: #555;
        }
        
        /* Features Section */
        .features {
            background-color: var(--light);
            padding: 60px 0;
            margin: 50px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-radius: 10px;
            margin: 50px 0;
        }
        
        .cta h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary);
        }
        
        .btn-light:hover {
            background-color: var(--light);
            color: var(--dark);
        }
        
   
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }