.font-gujarati { font-family: 'Noto Serif Gujarati', serif; }
.neumorphic-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}
.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 70px #d9d9d9, -25px -25px 70px #ffffff;
}
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
}
.hero::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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}
.animate-fadeIn {
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.text-primary-blue { color: #1e40af; }
.scroll-mt-20 { scroll-margin-top: 5rem; }
.feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.smart-screen-glow {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
}