
/* Custom Styles for VIICT Website */
.viict-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: #0a1128; /* Deep Navy Blue (Matches your Header) */
    border: 2px solid #ff5722; /* Orange Border */
    border-radius: 12px;
    z-index: 99999;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    display: none;
    overflow: hidden;
    animation: slideRight 0.5s ease forwards;
}

@keyframes slideRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.popup-inner { position: relative; padding: 25px; }

.close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
}

.close-x:hover { opacity: 1; color: #ff5722; }

.popup-top { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }

.live-indicator {
    width: 8px;
    height: 8px;
    background: #ff5722;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.badge-text { color: #ff5722; font-size: 12px; font-weight: 700; letter-spacing: 1px; }

.popup-main h2 { color: #fff; font-size: 22px; margin: 0 0 10px 0; font-family: sans-serif; }
.popup-main h2 span { color: #ff5722; }

.popup-main p { color: #ccc; font-size: 14px; line-height: 1.4; margin-bottom: 20px; }
/* Button ka asli color */
.btn-main {
    display: block !important;
    background-color: #ff5722 !important; /* Orange background */
    color: #ffffff !important; /* Text color pure white */
    text-align: center !important;
    padding: 12px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

/* Hover karne par bhi white hi rahega */
.btn-main:hover {
    background-color: #e64a19 !important; /* Thoda dark orange */
    color: #ffffff !important; /* Force white text on hover */
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

/* Kisi bhi halat mein blue na dikhe uske liye ye extra safety */
.btn-main:visited, .btn-main:active, .btn-main:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.phone-link { color: #fff; font-size: 13px; text-align: center; }
.phone-link strong { color: #ff5722; }

/* Mobile Friendly Adjustments */
@media (max-width: 480px) {
    .viict-popup {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        border: none;
        border-top: 3px solid #ff5722;
    }
}