/* Dark themed Urdu website */
body {
    font-family: 'Noto Nastaliq Urdu', serif;
    margin: 0;
    padding: 0;
    background: url('https://images.unsplash.com/photo-1611599533622-2d44a7dc1b45?fit=crop&w=1920&h=1080') no-repeat center center fixed;
    background-size: cover;
    color: #f1f1f1;
}

header, footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0,0,0,0.7);
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.product {
    background-color: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

input[type="file"], input[type="text"], input[type="email"], textarea {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #e65c00;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.whatsapp-btn:hover {
    background-color: #1ebe57;
}
