/* =========================
   COMMON FONT
========================= */
body {
    font-family: 'Inter', sans-serif;
}






/* =========================
   FINAL POPUP UI (LIGHT THEME + FULL WIDTH)
========================= */

/* FULL WIDTH FIX */
.popup-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 🔥 LIGHT ORANGE BACKGROUND CARD */
.popup-card {
    width: 100%;
    padding: 20px 25px;
    border-radius: 10px;

   background: #fffaf7;   /* 🔥 softer than before */
    border: 1px solid #fde7da;
}

/* HEADER */
.popup-header-bar {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00, #ff8c42);
    color: #fff;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 18px;
}

/* SECTION */
.popup-section {
    width: 100%;
    margin-bottom: 16px;
}

/* LABEL */
.popup-section label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* INPUT */
.popup-section input.form-control,
.popup-section select.form-control {
    height: 42px;
}

/* TEXTAREA */
.popup-textarea {
    width: 100%;
    min-height: 130px;
}

/* ROW FIX */
.popup-section .row {
    margin: 0;
}

/* COLUMN GAP CONTROL */
.popup-section .col-md-4 {
    padding-left: 6px;
    padding-right: 6px;
}

/* BUTTON */
.popup-btn {
    height: 42px;
    font-weight: 600;
    background: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 6px;
}

.popup-btn:hover {
    background: #e65c00;
}



.popup-message-box {
    background: #fff;
    border: 2px solid #e3e8ef;
    border-radius: 8px;
    padding: 10px;
}

.popup-textarea {
    width: 100%;
    min-height: 180px !important;
    font-size: 14px;
    line-height: 1.6;
    font-family: monospace;
    border: none;
    outline: none;
    resize: vertical;
}
.popup-section select {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;

    background: #fff;
    cursor: pointer;
}


/* focus effect */
.popup-message-box:focus-within {
    border-color: #ff6a00;
    box-shadow: 0 0 0 2px rgba(255,106,0,0.1);
}

.popup-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #444;
}








/* =========================
   FRONTEND POPUP (TOP BAR)
========================= */

.popup-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	
	background: #ffffff;
	
	
    color: #333   !important;
    padding: 2px 50px 2px 2px;
    font-size: 14px;
    z-index: 9999;
    display: none;
	padding-right: 70px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);   /* 🔥 ADD THIS */

}


/* 🔥 Warning icon (bigger + gold) */
.warn-icon {
    color: #ff6a00;        /* gold */
    font-size: 12px;         /* slightly bigger */
    margin-right: 2px;
    vertical-align: middle;
	 line-height: 1;
}

/* 📞 Call icon (normal white) */
.call-icon {
     color: #f15a00; 
    font-size: 14px;         /* normal size */
    margin: 0 6px;
    vertical-align: middle;
	line-height: 1;
}

/* 💬 WhatsApp icon (white, same size as call) */


.popup-text a {
    color: #f15a00 !important;
    font-weight: 600;
}

.popup-text i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}


/* Running text effect */
.popup-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 0;   /* ✅ IMPORTANT CHANGE */
    animation: popupScroll 35s linear infinite;
	    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* 🔥 spacing between sections */
.popup-text span {
    margin: 0 12px;
}

@keyframes popupScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ONLY hover → pause */
.popup-alert:hover .popup-text {
    animation-play-state: paused;
}



/* Close button */
.popup-close {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.8;
}

.popup-close:hover {
    opacity: 1;
}

.popup-text a:hover{
    opacity: 0.8;
	color: #1ebe5d !important;
}











/* =========================
   MOBILE POPUP FINAL FIX
========================= */
@media (max-width:768px){

    .popup-alert{
        padding: 10px 50px 4px 10px; !important;   /* 🔥 height reduce */
        font-size: 13px !important;            /* 🔥 text small */
        line-height: 1.2;
		
    }

    .popup-text{
    font-size: 14px !important;
    animation: popupScroll 38s linear infinite;
    animation-delay: -8s;   /* 🔥 merge here */
	}

    /* ICON SIZE */
    .warn-icon{
        font-size: 13px !important;
		
    }

    .call-icon,
    .wa-icon{
        font-size: 11px !important;
        margin: 0 3px !important;
    }

    /* CLOSE BUTTON */
    .popup-close{
        font-size: 13px;
        right: 10px;
    }
	
	
}