/* SevaGhar Ka Design - Copy Paste Maar */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { background: #f5f5f5; }

.top-bar { background: #ff3d00; color: white; text-align: center; padding: 8px; font-size: 14px; }

header { background: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo { font-size: 28px; font-weight: bold; color: #0d47a1; }
.call a { background: #0d47a1; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; }

.hero { background: #0d47a1; color: white; text-align: center; padding: 60px 20px; }
.hero h1 { font-size: 32px; margin-bottom: 15px; line-height: 1.3; }
.hero p { font-size: 18px; margin-bottom: 25px; }
.btn { background: #ff3d00; color: white; padding: 15px 30px; text-decoration: none; border-radius: 8px; font-size: 18px; font-weight: bold; display: inline-block; }

.services { padding: 50px 5%; text-align: center; }
.services h2 { font-size: 28px; margin-bottom: 30px; color: #333; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.price { font-size: 24px; color: #ff3d00; font-weight: bold; margin: 10px 0; }
.btn-small { background: #0d47a1; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; display: inline-block; margin-top: 15px; }

.trust { background: #e3f2fd; padding: 30px 5%; display: flex; justify-content: space-around; text-align: center; font-weight: bold; flex-wrap: wrap; gap: 15px; }

footer { background: #333; color: white; text-align: center; padding: 20px; }

.whatsapp { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; padding: 15px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

input, select { width: 100%; padding: 12px; margin: 8px 0; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; }
button.btn { width: 100%; border: none; cursor: pointer; }

/* Mobile ke liye */
@media (max-width: 600px) {
    .hero h1 { font-size: 24px; }
    header { flex-direction: column; gap: 10px; }
    .trust { flex-direction: column; }
}