.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.container p {
    font-size: 15px !important;
}

.about-section {
    padding: 60px 0;
    font-size: 15px;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
}
/* kankuri school css  starts here*/
:root {
            --primary-color: #2c786c;
            --secondary-color: #f8b400;
            --accent-color: #004445;
            --light-bg: #faf5e4;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
        }
        
        .hero-section {
            background: linear-gradient(rgba(44, 120, 108, 0.8), rgba(44, 120, 108, 0.8)), 
                        url('https://placehold.co/1920x1080') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }
        
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .location-card {
            /* background: var(--accent-color); */
            color: white;
            border-radius: 10px;
            /* padding: 25px; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
        }
        
        .btn-visit {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            border-radius: 50px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .btn-visit:hover {
            background-color: #ffcc00;
            transform: scale(1.05);
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .stats-section {
            padding: 50px 0;
            background-color: white;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .footer {
            background-color: var(--accent-color);
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
        }
/* ends here */