/* Header Styles */
    .header {
        background-color: #f8f9fa;
        padding: 20px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    .header h1 {
        font-size: 32px;
        font-weight: 700;
        color: #343a40;
        margin: 0;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }
    .header p {
        font-size: 18px;
        color: #6c757d;
        margin: 5px 0 0;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }
    .header .btn {
        margin-top: 15px;
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .header .btn:hover {
        transform: translateY(-3px);
    }

    /* Fancy Blink Animation (default WhatsApp green) */
    @keyframes blink {
        0% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 5px rgba(37, 211, 102, 0.6);
        }

        50% {
            opacity: 0.9;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(37, 211, 102, 1);
        }

        100% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 5px rgba(37, 211, 102, 0.6);
        }
    }

    .blink-btn {
        animation: blink 1.5s infinite ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 30px;
        font-weight: 600;
        font-size: 16px;
        padding: 10px 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Telegram button custom blue */
    .btn-telegram {
        background-color: #0088cc;
        border-color: #0088cc;
        color: #fff;
    }

    .btn-telegram:hover {
        background-color: #007ab8;
        border-color: #007ab8;
        color: #fff;
    }

    /* Mobile view */
    @media (max-width: 576px) {
        .blink-btn {
            font-size: 14px;
            padding: 10px 15px;
            border-radius: 20px;
        }
    }
    .box1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.4;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .box1:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    .job-btn {
        min-width: 100px;
        font-weight: 600;
        color: #fff;
    }

    /* Custom Colors */
    .job-state   { background-color: #e74c3c; } /* Red */
    .job-bank    { background-color: #27ae60; } /* Green */
    .job-teaching{ background-color: #f39c12; } /* Orange */
    .job-engineer{ background-color: #2980b9; } /* Blue */
    .job-railway { background-color: #8e44ad; } /* Purple */
    .job-police  { background-color: #2c3e50; } /* Dark Navy */
    .job-upsc    { background-color: #16a085; } /* Teal */
    .job-ssc     { background-color: #d35400; } /* Dark Orange */
    .job-other   { background-color: #28a745; } /* Bootstrap Green */
    .job-result  { background-color: #ffc107; }/* Yellow */
    .job-btn:hover { opacity: 0.85; transform: scale(1.05); transition: 0.3s;}

    .job-btn {
        font-size: 18px;
        color: #fff;
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        /* padding: 10px 20px; */
    }

    /* Hover effects with glow */
    .btn-danger:hover {
        background-color: #c82333 !important;
        box-shadow: 0 4px 10px rgba(200, 35, 51, 0.6);
        transform: translateY(-3px);
    }

    .btn-success:hover {
        background-color: #218838 !important;
        box-shadow: 0 4px 10px rgba(40, 167, 69, 0.6);
        transform: translateY(-3px);
    }

    .btn-warning:hover {
        background-color: #fffdf5ff !important;
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6);
        transform: translateY(-3px);
    }

    .btn-info:hover {
        background-color: #117a8b !important;
        box-shadow: 0 4px 10px rgba(23, 162, 184, 0.6);
        transform: translateY(-3px);
    }

    .btn-primary:hover {
        background-color: #0056b3 !important;
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.6);
        transform: translateY(-3px);
    }

    .btn-dark:hover {
        background-color: #343a40 !important;
        box-shadow: 0 4px 10px rgba(52, 58, 64, 0.6);
        transform: translateY(-3px);
    }

    .dark {
        /* background: #020e1a !important; */
        padding: 10px;
        border-radius: 25px;
        box-shadow: 0 4px 10px rgb(255 166 166 / 50%);
        margin-bottom: 20px;
        text-align: center;
    }

    .dark h5 {
        font-size: 24px;
        color: #fff;
        font-weight: 600;
        /* font-family: 'Poppins', sans-serif; */
        text-align: center;
        /* margin-bottom: 20px; */
    }

    .form-control:focus {
        box-shadow: 0 0 8px rgba(220, 53, 69, 0.5) !important;
        border-color: #dc3545;
    }

    .btn-yellow {
        background-color: #FFC107; /* Bright yellow */
        color: #fff; /* White text */
        border: none;
    }
    .btn-yellow:hover {
        background-color: #e0a800; /* Thoda dark yellow on hover */
        color: #fff;
    }
    /* Hide Google Translate banner completely */
    /* .goog-te-banner-frame.skiptranslate { display: none !important; }  */
    /* body { top: 0px !important; } */
