@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #2d3748; background: #f7fafc; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%); color: white; padding: 2rem 0; text-align: center; position: relative; overflow: hidden; }
header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); }
h1 { font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.subtitle { font-size: 1.4rem; opacity: 0.95; font-weight: 300; position: relative; z-index: 1; }
main { padding: 3rem 0; }
.intro { text-align: center; margin-bottom: 2rem; }
.intro h2 { font-size: 2rem; color: #1a202c; margin-bottom: 0.5rem; font-weight: 600; }
.intro p { font-size: 1.2rem; color: #4a5568; max-width: 600px; margin: 0 auto; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card { background: white; padding: 2rem 1.5rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; transition: all 0.4s ease; border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.japamala-icon { color: #f59e0b; }
.ai-icon { color: #3b82f6; }
.service-card h3 { color: #1a202c; margin-bottom: 1rem; font-size: 1.8rem; font-weight: 600; }
.service-card p { color: #4a5568; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.6; }
.btn { display: inline-block; background: linear-gradient(135deg, #4f46e5, #7c3aed); color: white; padding: 14px 32px; text-decoration: none; border-radius: 50px; margin-top: 1rem; transition: all 0.3s ease; font-weight: 600; font-size: 1rem; box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4); background: linear-gradient(135deg, #4338ca, #6d28d9); }
.header-btn {
    margin-top: 2rem;
    padding: 16px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.header-btn:hover {
    background: linear-gradient(135deg, #db2777, #6d28d9);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.6);
}
footer { background: linear-gradient(135deg, #1a202c, #2d3748); color: white; text-align: center; padding: 1.5rem 0; }
footer p { opacity: 0.8; }
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .intro h2 { font-size: 2rem; }
    .services { grid-template-columns: 1fr; gap: 2rem; }
}