@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

/* Whole page background blue */
body {
    background-color: #31708f !important;
}

#login-form {
	margin:5% auto;
	max-width:500px;
}

/* home page */
#wrapper{
	padding-top:50px;
}

/* Navbar */
.navbar-default {
    background-color: #31708f !important;
}

.navbar-default .navbar-nav>li>a {
    color: #fff !important;
}

.navbar-default .navbar-brand {
    color: #dff0d8 !important;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background: rgba(255,102,0,1) !important;
    border-radius: 10px;
    margin-top: 2px;
}

/* Alert */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: crimson !important;
    color: #fff!important;
}

/* ranaghat_2 Button */
.ranaghat_2 {
    text-align: center;
    padding: 13px 0;
    font-weight: bold;
    background: #00b7ea;
    background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00b7ea), color-stop(100%,#009ec3));
    background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
    background: -o-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
    background: -ms-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
    background: linear-gradient(to bottom, #00b7ea 0%,#009ec3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 );
    font-size: 20px;
    color: #fff;
    border-radius: 10px;
}

/* Optional: Popup/modal background fix (if needed) */
.modal-backdrop {
    background-color: #31708f !important;
}


html, body {
    width: 100%;
    height: 100%;
    background: #31708f !important;
    background-image: none !important;
}

#wrapper,
.container,
.container-fluid,
.app,
#app {
    background: transparent !important;
}

body:before,
body:after {
    display: none !important;
}


/* =========================
   UNIQUE ACTION BUTTON UI
   ========================= */

.action-buttons{
    text-align: center;
    margin: 25px 0;
}

.action-btn{
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* STOCKIST */
.action-btn.stockist{
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

/* EPAPER */
.action-btn.epaper{
    background: linear-gradient(135deg, #396afc, #2948ff);
}

/* LOTTERY */
.action-btn.lottery{
    background: linear-gradient(135deg, #ff8008, #ffc837);
    color: #000;
}

/* Hover effect */
.action-btn:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Shine animation */
.action-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.action-btn:hover::before{
    left: 120%;
}

/* NEW badge */
.tag-new{
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff2d55;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    animation: pulse 1.4s infinite;
}

/* Pulse animation */
@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.1); }
    100%{ transform: scale(1); }
}

/* Mobile responsive */
@media(max-width:768px){
    .action-btn{
        width: 90%;
        margin: 10px auto;
        display: block;
    }
}

/* ===============================
   APP24 SAFE BUTTON DESIGN
   =============================== */

.app24-buttons{
    text-align: center;
    margin: 20px 0;
}

/* Base button */
.btn24{
    display: inline-block;
    width: auto;
    margin: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: #5cb85c;
}

/* Green */
.btn-green{
    background-color: #4CAF50;
}

/* Blue */
.btn-blue{
    background-color: #337ab7;
}

/* Orange */
.btn-orange{
    background-color: #f0ad4e;
    color: #000 !important;
}

/* NEW label – simple span */
.new24{
    margin-left: 6px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    background-color: red;
    color: #fff;
    border-radius: 4px;
}

/* Click effect (safe) */
.btn24:active{
    opacity: 0.85;
}

/* Mobile fix */
@media (max-width: 768px){
    .btn24{
        display: block;
        width: 95%;
        margin: 8px auto;
        font-size: 13px;
    }
}