body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* नया प्रीमियम फॉन्ट */
    background: linear-gradient(135deg, #1e3a8a, #0d9488);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.logo {
    font-size: 50px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite; /* डायमंड को तैरता हुआ इफ़ेक्ट देने के लिए */
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1 {
    margin: 5px 0;
    color: #1e293b;
    font-size: 26px;
    font-weight: 700;
}

.subtitle {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* बटन की कॉमन स्टाइल्स */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* आइकॉन और टेक्स्ट के बीच गैप */
    text-decoration: none;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    margin: 14px 0;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn i {
    font-size: 18px;
}

/* बटन के अलग-अलग कलर्स */
.call {
    background: #16a34a;
}
.call:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

.whatsapp {
    background: #25D366;
}
.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.telegram {
    background: #2563eb; /* सबमिट रिक्वेस्ट के लिए ब्लू */
}
.telegram:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* स्टेटस इंडिकेटर */
.status {
    background: #f0fdf4;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid #bbf7d0;
}

footer {
    margin-top: 30px;
    font-size: 11px;
    color: #94a3b8;
}
