        /* Is page ke liye specific styles */
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }

        .form-label {
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
            display: block;
        }

        .form-input,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            margin-bottom: 20px;
            box-sizing: border-box;
        }

        .form-input:focus,
        textarea:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
        }

        .btn-submit {
            background: #262C81;
            color: white;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.2s;
        }

        .btn-submit:hover {
            background: #1e236b;
            transform: translateY(-2px);
        }

        .btn-inbox {
            background: #e0e7ff;
            color: #4338ca;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .btn-inbox:hover {
            background: #c7d2fe;
        }

        .btn-header-fb {
            background: #1877F2;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .btn-header-fb:hover {
            background: #145dbf;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .btn-header-yt {
            background: #FF0000;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .btn-header-yt:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
        }

        /* --- Responsive Styles --- */
        @media (max-width: 768px) {
            .btn-text {
                display: none;
            }

            .btn-header-fb,
            .btn-header-yt,
            .btn-inbox {
                padding: 8px 12px;
                font-size: 20px;
                gap: 0;
            }

            .header-left h3 {
                font-size: 18px;
            }
        }

        /* --- Notification Badge Style --- */
        .inbox-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ef4444;
            /* Red Color */
            color: white;
            font-size: 11px;
            font-weight: bold;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* --- Social Links Style --- */
        .social-row {
            margin: 20px 0;
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            text-decoration: none;
            transition: 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .fb-btn {
            color: #1877F2;
        }

        .yt-btn {
            color: #FF0000;
        }

        .social-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            background: white;
        }