


/* PREMIUM BLACK + GOLD */
/* Floating round button */
#chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, gold, #b8860b);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0 15px gold;
    z-index: 9999;
    animation: pulse 2s infinite;
}
/* icon rotate start*/
#chatbot-icon {
    transition: transform 0.3s ease;
}

#chatbot-icon.rotate {
    transform: rotate(90deg);
}
/* icon rotate end */
@keyframes pulse {
    0% { box-shadow: 0 0 10px gold; }
    50% { box-shadow: 0 0 25px gold; }
    100% { box-shadow: 0 0 10px gold; }
}

/* Chat window */
/* =========================
   PREMIUM CHATBOT CONTAINER
========================= */

#chatbot-container{
    position:fixed;
    bottom:100px;
    right:20px;

    width:390px;
    max-width:95vw;

    height:620px;
    max-height:85vh;

    background:linear-gradient(180deg,#0f0f0f,#1a1a1a);

    border:2px solid rgba(212,175,55,.45);

    border-radius:24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.55),
        0 0 18px rgba(212,175,55,.25);

    overflow:hidden;

    display:flex;
    flex-direction:column;

    z-index:9991;

    transform:translateY(20px) scale(.96);
    opacity:0;
    pointer-events:none;

    transition:.35s ease;
}

#chatbot-container.active{
    transform:translateY(0) scale(1);
    opacity:1;
    pointer-events:auto;
}


/* cinematic start 
.chat-container {
    transform: scale(0);
    opacity: 0;
    transition: 0.4s ease;
}

.chat-container.active {
    transform: scale(1);
    opacity: 1;
}
/* cinematic end */
#chat-header{
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 16px;

    background:linear-gradient(135deg,#111,#1d1d1d);

    border-bottom:1px solid rgba(212,175,55,.25);

    color:gold;

    min-height:72px;

    z-index:5;
}
#chat-header h3{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:gold;
}
Language buttons visible
/* =========================
   LANGUAGE BUTTON BAR
========================= */

.language-buttons{
    display:flex;
    flex-wrap:wrap;

    gap:8px;

    padding:12px;

    background:#141414;

    border-bottom:1px solid rgba(212,175,55,.18);

    flex-shrink:0;

    z-index:4;
}

.language-buttons button{
    border:none;

    background:linear-gradient(135deg,#d4af37,#b8860b);

    color:#111;

    font-size:14px;
    font-weight:600;

    padding:8px 14px;

    border-radius:30px;

    cursor:pointer;

    transition:.25s ease;
}

.language-buttons button:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(212,175,55,.3);
}
Scrollable chat body
#chat-body{
    flex:1;

    overflow-y:auto;

    padding:16px;

    background:#101010;

    color:#fff;
}
Bottom input fixed
.chat-input-area{
    flex-shrink:0;

    display:flex;
    gap:10px;

    padding:12px;

    background:#151515;

    border-top:1px solid rgba(212,175,55,.2);
}

.chat-input-area input{
    flex:1;

    border:none;
    outline:none;

    background:#222;

    color:#fff;

    border-radius:30px;

    padding:12px 16px;
}

.chat-input-area button{
    border:none;

    background:gold;

    color:#111;

    padding:12px 18px;

    border-radius:30px;

    font-weight:700;
}

#chat-body {
    background: #000;
    color: white;
    height: 450px;
    display: flex;
    flex-direction: column;
    border: 1px solid gold;
    border-radius: 0 0 12px 12px;
}

/* Chat message area */
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Common bubble style */
.message {
    max-width: 75%;
    padding: 10px 14px;
    margin: 6px 0;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

/* User bubble (right side) */
.user-message {
    align-self: flex-end;
    background: gold;
    color: black;
    border-bottom-right-radius: 4px;
}

/* Bot bubble (left side) */
.bot-message {
    align-self: flex-start;
    background: #1a1a1a;
    color: white;
    border: 1px solid gold;
    border-bottom-left-radius: 4px;
}

/* Typing animation inside bubble */
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dot {
    height: 6px;
    width: 6px;
    background-color: gold;
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}

.chat-input-area {
    display: flex;
    border-top: 1px solid gold;
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    border: none;
    background: #111;
    color: white;
}

.chat-input-area button {
    background: gold;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.language-toggle {
    text-align: right;
    padding: 5px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

.voice-btn {
    background: black;
    color: gold;
    border: 1px solid gold;
    padding: 5px;
    cursor: pointer;
}

.appointment-form {
    padding: 10px;
    display: none;
}

.appointment-form input {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px;
}
/* PREMIUM BLACK + GOLD end*/

/* Typing animation start*/
.typing {
    display: inline-block;
    margin-left: 5px;
}

.typing span {
    height: 6px;
    width: 6px;
    margin: 0 2px;
    background-color: gold;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}
/* Typing animation end*/

/* Slide-in animation start */
@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation */
.user-message {
     animation: slideFromRight 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.bot-message {
    animation: slideFromLeft 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Slide-in animation end */
/* Timestamp style start */
.timestamp {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
}

/* Bot timestamp align left */
.bot-message .timestamp {
    text-align: left;
}
/* Timestamp style end */
/* Tick mark container start */
/* Tick styles */
.tick {
    font-size: 11px;
    margin-left: 6px;
    color: #bbb;
    transition: 0.3s ease;
}

/* Delivered (double grey) */
.tick.delivered {
    color: #015d23;
}

/* Read (blue) */
.tick.read {
    color: #4fc3f7;
}

.time-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    opacity: 0.8;
    margin-top: 4px;
}
/* Tick mark container end */
/* cinematic effect start */
.chat-icon-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Main Chat Icon */
.chat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #24270f, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    animation: float 3s ease-in-out infinite;
    transition: 0.4s ease;
    position: relative;
}

/* Glow breathing */
@keyframes float {
    0% { transform: translateY(0px); box-shadow: 0 0 15px #00f2ff; }
    50% { transform: translateY(-8px); box-shadow: 0 0 35px #00f2ff; }
    100% { transform: translateY(0px); box-shadow: 0 0 15px #00f2ff; }
}

/* 3D Hover Effect */
.chat-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 45px #00f2ff;
}

/* Notification Dot */
.notification-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
    background: rgb(1, 160, 43);
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
/* cinematic effect end */

/* ===== Appointment Form Styling start===== */

#appointmentForm {
    background: linear-gradient(145deg, #000000, #111111);
    border: 1px solid #d4af37;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: fadeInForm 0.4s ease-in-out;
}

/* Labels */
#appointmentForm label {
    color: #d4af37;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Inputs */
#appointmentForm input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s;
}

/* Input Focus Glow */
#appointmentForm input:focus {
    outline: none;
    border: 1px solid #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Date icon color fix (Chrome) */
#appointmentForm input[type="date"] {
    color-scheme: dark;
}

/* Submit Button */
#appointmentForm button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    color: #000;
    transition: 0.3s ease;
}

/* Button Hover */
#appointmentForm button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* Animation */
@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #appointmentForm {
        padding: 15px;
        border-radius: 12px;
    }

    #appointmentForm input {
        font-size: 13px;
    }

    #appointmentForm button {
        font-size: 14px;
    }
}
/* ===== Appointment Form Styling end===== */

/* ===== Success Popup start===== */

.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.success-content {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212,175,55,0.5);
    animation: scaleIn 0.4s ease;
}

.success-content h3 {
    color: #d4af37;
    margin-top: 15px;
}

.success-content p {
    color: #fff;
    font-size: 14px;
}

/* Animation */
@keyframes scaleIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Checkmark Animation */

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
}

.checkmark-circle .background {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    position: absolute;
}

.checkmark {
    position: absolute;
    left: 22px;
    top: 40px;
    width: 25px;
    height: 5px;
    background-color: white;
    transform: rotate(45deg);
    animation: check1 0.4s ease forwards;
}

.checkmark:after {
    content: "";
    position: absolute;
    left: -10px;
    top: -18px;
    width: 5px;
    height: 25px;
    background-color: white;
    transform: rotate(-90deg);
    animation: check2 0.4s ease forwards;
}

@keyframes check1 {
    from { width: 0; }
    to { width: 25px; }
}

@keyframes check2 {
    from { height: 0; }
    to { height: 25px; }
}
/* ===== Success Popup end===== */
/*answer*/
.chat-buttons {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-option-btn {
  background: linear-gradient(45deg, #bfa046, #d4af37);
  color: black;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.chat-option-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px gold;
}
/*answer*/
/*live time start*/
/* TOP CORNER STATUS BADGE ONLY */
#liveStatusBadge {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  animation: pulseGlow 2s infinite;
}

/* Scoped status colors */
#liveStatusBadge.status-open {
  background: linear-gradient(45deg, #7a40ef, #34a853);
}

#liveStatusBadge.status-lunch {
  background: linear-gradient(45deg, #f4b400, #ffcc00);
  color: black;
}

#liveStatusBadge.status-closed {
  background: linear-gradient(45deg, #d93025, #ea4335);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.9); }
  100% { box-shadow: 0 0 5px rgba(255,215,0,0.4); }
}
/*live time end*/
/*auto dictionary start*/
.input-area { position: relative; }

#suggestionBox {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    background: #111;
    border: 1px solid gold;
    border-radius: 8px;
    max-height: 160px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.suggestion-item {
    padding: 8px;
    color: white;
    cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: gold;
    color: black;
}
/*auto dictionary end*/
/*doctor list availble start*/
/* ===== DOCTOR STATUS PANEL ===== */

.doctor-panel {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 250px;
    background: black;
    color: white;
    border: 2px solid gold;
    border-radius: 12px;
    padding: 10px;
    font-size: 13px;
    z-index: 9999;
    box-shadow: 0 0 10px gold;
}

.panel-header {
    font-weight: bold;
    margin-bottom: 6px;
    color: gold;
    text-align: center;
}

.doctor-item {
    margin: 5px 0;
}

.status-open {
    color: #00ff00;
}

.status-closed {
    color: #ff4d4d;
}

.status-break {
    color: orange;
}

.holiday-info {
    margin-top: 8px;
    font-size: 12px;
    border-top: 1px solid gold;
    padding-top: 5px;
    color: #ffcc00;
}
/* ===== DOCTOR TOGGLE BUTTON ===== */

.doctor-toggle-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    background: gold;
    color: black;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    box-shadow: 0 0 8px gold;
    transition: 0.3s;
}

.doctor-toggle-btn:hover {
    transform: scale(1.05);
}

/* ===== DOCTOR PANEL ===== */

/* ===== TOGGLE BUTTON ===== */
.doctor-toggle-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    background: gold;
    color: black;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    box-shadow: 0 0 10px gold;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Notification Dot */
.notify-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* ===== PANEL DESKTOP ===== */
.doctor-panel {
    position: fixed;
    top: 50px;
    left: -300px;
    width: 270px;
    background: black;
    color: white;
    border: 2px solid gold;
    border-radius: 12px;
    padding: 10px;
    font-size: 13px;
    z-index: 9998;
    box-shadow: 0 0 15px gold;
    transition: 0.4s ease;
}

.doctor-panel.active {
    left: 10px;
}

.panel-header {
    font-weight: bold;
    color: gold;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 5px;
    cursor: pointer;
}

/* Doctor Card */
.doctor-card {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.doctor-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid gold;
}

.doctor-info {
    flex: 1;
}

.status-open { color: #00ff00; }
.status-closed { color: #ff4d4d; }
.status-break { color: orange; }

/* ===== MOBILE VERSION ===== */
@media(max-width: 768px) {

    .doctor-panel {
    left: -300px;
    transition: 0.4s ease;
}

.doctor-panel.active {
    left: 10px;
}
}
/*doctor list available end*/

/*whats app animate start*/
/* ===== CLASSIC CHATBOT WHATSAPP BUTTON ===== */

.chat-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 100%;
    padding: 10px 0;

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    border-radius: 8px;
    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Shine Animation */
.chat-wa-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
}

.chat-wa-btn:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Hover Effect */
.chat-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}

/* Click Effect */
.chat-wa-btn:active {
    transform: scale(0.97);
}

/* Icon Style */
.chat-wa-btn .wa-icon {
    font-size: 16px;
}

/* Soft Pulse Glow */
.chat-wa-btn {
    animation: waGlow 2.5s infinite;
}

@keyframes waGlow {
    0% {
        box-shadow: 0 0 8px rgba(37,211,102,0.5);
    }
    50% {
        box-shadow: 0 0 16px rgba(37,211,102,0.8);
    }
    100% {
        box-shadow: 0 0 8px rgba(37,211,102,0.5);
    }
}
/*whats app animate end*/
/*website popup start*/
/* ===== ANIMATED POPUP OVERLAY ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.15), rgba(0,0,0,0.9));
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* GOLD MOVING LIGHT EFFECT */
.popup-overlay::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,215,0,0.15), transparent);
    animation: goldMove 6s linear infinite;
}

@keyframes goldMove {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(50%) rotate(360deg); }
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== POPUP BOX ===== */
.popup-box {
    position: relative;
    background: black;
    color: white;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid gold;
    box-shadow: 0 0 30px gold;
    animation: popupZoom 0.6s ease;
    z-index: 2;
}

@keyframes popupZoom {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.popup-box h2 {
    color: gold;
    margin-bottom: 10px;
    font-weight: bold;
}

.popup-box a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, gold, orange);
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.popup-box a:hover {
    transform: scale(1.1);
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
}
/* ===== LIVE BADGE ===== */
.live-offer {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.live-badge {
    background: red;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    margin-right: 6px;
    animation: blinkLive 1s infinite;
}

@keyframes blinkLive {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* ===== COUNTDOWN BOX ===== */
.countdown-box {
    margin: 15px 0;
    font-size: 22px;
    font-weight: bold;
    color: gold;
    letter-spacing: 2px;
    animation: pulseTimer 1.2s infinite;
}

@keyframes pulseTimer {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/*website popup end*/
/*qr payment start*/
/* ===============================
   UPI PAYMENT POPUP
================================= */

.upi-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.upi-overlay.active {
    opacity: 1;
    visibility: visible;
}

.upi-box {
    position: relative;
    background: black;
    color: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid gold;
    box-shadow: 0 0 30px gold;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.upi-qr {
    width: 220px;
    margin: 15px 0;
}

.upi-id {
    font-size: 14px;
    color: gold;
    margin-bottom: 15px;
}

.upi-btn {
    background: linear-gradient(45deg, gold, orange);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.upi-btn:hover {
    transform: scale(1.05);
}

.upi-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
}

/*qr payment end*/

/* ===================================== */
/* PREMIUM CLASSIC APPOINTMENT DESIGN */
/* ===================================== */

.premium-appointment-box{
    position: relative;
    padding: 38px 45px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg,#0c0c0c,#1a1a1a);
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow:
    0 15px 45px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.03);
    transition: all 0.5s ease;
}

/* Soft Golden Glow */
.premium-appointment-box::before{
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
    rgba(212,175,55,0.18) 0%,
    transparent 70%);
    top: -120px;
    right: -120px;
    animation: glowMove 6s ease-in-out infinite alternate;
}

/* Border Animation */
.border-line{
    position: absolute;
    background: linear-gradient(90deg,
    transparent,
    #d4af37,
    transparent);
}

.border-line1{
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    animation: borderMove1 4s linear infinite;
}

.border-line2{
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 1px;
    animation: borderMove2 4s linear infinite;
}

/* Layout */
.premium-appointment-content{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Subtitle */
.appointment-subtitle{
    display: inline-block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Heading */
.premium-appointment-left h3{
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

/* Paragraph */
.premium-appointment-left p{
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 25px;
}

/* Features */
.appointment-features{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.feature-item i{
    color: #d4af37;
    font-size: 15px;
}

/* Button */
.premium-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 60px;
    text-decoration: none;
    background: linear-gradient(135deg,#d4af37,#f0d57a);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

/* Button Shine */
.premium-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.premium-btn:hover::before{
    left: 130%;
}

.premium-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.4);
}

/* Glow Animation */
@keyframes glowMove{
    0%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(30px);
    }
}

/* Border Animations */
@keyframes borderMove1{
    0%{
        left: -100%;
    }
    100%{
        left: 100%;
    }
}

@keyframes borderMove2{
    0%{
        right: -100%;
    }
    100%{
        right: 100%;
    }
}

/* ===================================== */
/* MOBILE RESPONSIVE */
/* ===================================== */

@media(max-width:991px){

    .premium-appointment-content{
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-appointment-left h3{
        font-size: 34px;
    }

}

@media(max-width:767px){

    .premium-appointment-box{
        padding: 30px 25px;
        border-radius: 24px;
    }

    .premium-appointment-left h3{
        font-size: 28px;
    }

    .premium-appointment-left p{
        font-size: 15px;
    }

    .appointment-features{
        gap: 12px;
    }

    .feature-item{
        width: 100%;
        justify-content: center;
    }

    .premium-appointment-right{
        width: 100%;
    }

    .premium-btn{
        width: 100%;
        justify-content: center;
    }

}

/* ===================================== */
/* PERFECT MOBILE RESPONSIVE CSS */
/* ===================================== */

/* Tablet Responsive */
@media only screen and (max-width: 991px){

    .premium-appointment-box{
        padding: 35px 30px;
        border-radius: 24px;
    }

    .premium-appointment-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .premium-appointment-left{
        width: 100%;
    }

    .premium-appointment-left h3{
        font-size: 34px;
        line-height: 1.3;
    }

    .premium-appointment-left p{
        max-width: 100%;
        font-size: 15px;
    }

    .appointment-features{
        gap: 12px;
    }

    .premium-appointment-right{
        width: 100%;
    }

    .premium-btn{
        width: 100%;
        justify-content: center;
    }

}

/* Mobile Responsive */
@media only screen and (max-width: 767px){

    .premium-appointment-box{
        padding: 28px 22px;
        border-radius: 22px;
    }

    .premium-appointment-box::before{
        width: 180px;
        height: 180px;
        top: -80px;
        right: -80px;
    }

    .appointment-subtitle{
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .premium-appointment-left h3{
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .premium-appointment-left p{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .appointment-features{
        flex-direction: column;
        width: 100%;
    }

    .feature-item{
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
        font-size: 13px;
        border-radius: 14px;
    }

    .premium-btn{
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 50px;
    }

}

/* Small Mobile Responsive */
@media only screen and (max-width: 480px){

    .premium-appointment-box{
        padding: 24px 18px;
        border-radius: 20px;
    }

    .premium-appointment-left h3{
        font-size: 22px;
    }

    .premium-appointment-left p{
        font-size: 13px;
    }

    .feature-item{
        font-size: 12px;
        padding: 11px 12px;
    }

    .premium-btn{
        font-size: 13px;
        padding: 15px 18px;
    }

}

@media(max-width:768px){

#chatbot-icon{
    width:70px;
    height:70px;
    font-size:22px;
    bottom:16px;
    right:16px;
}

#chatbot-container{
    right:12px;
    left:12px;
    width:auto;
    bottom:85px;
}

#chat-body{
    height:420px;
}

}
.chat-input-area input:focus{
    outline:none;
    box-shadow: inset 0 0 8px rgba(212,175,55,.35);
}

.popup-overlay.active .popup-box{
    animation: popupZoom .5s ease;
}

.chatbot-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-width: 95%;
    z-index: 9999;
    overflow: visible;
}

.chat-header{
    position: sticky;
    top: 0;
    z-index: 10000;
    background: linear-gradient(135deg,#0b1f35,#12395c);
    color: white;
    padding: 14px 18px;
    border-radius: 20px 20px 0 0;
}

.language-switch{
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10001;
    display: flex;
    gap: 8px;
}