  .required:after {
  content:"*";color:red;
}
input[type=text], input[type=tel], select, textarea {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #1FAD00;
  border-radius: 4px;
}

/* When selected / focused */
input[type="text"]:focus,
select:focus,
textarea:focus {
    border-color: #1FAD00;
    box-shadow: 0 0 0 2px rgba(255,69,0,0.25); /* optional glow */
}


#logo_image
{
	height:70px !important;
}
select {
 height: 50px;
 line-height: 50px;
 font-size: 12pt;
}
.badge_emp
{
	cursor:pointer;
}
	#loading_div
	 {
display:none;	
	 }
input[id=username],input[id=password] {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #00FF8C !important;
  border-radius: 4px !important;
}
#login
{
align:center;
background-color:#FFB600;
}
#login:hover
{
	color:#FFFFFF;
}
.fa-sign-in-alt:hover
{
	color:#FFFFFF;
}
/*print block*/
@media print
{
	* { display: none; }
}
/*print block*/
     #logo_image_1
{
	height:150px !important;
}
    #logo_image_2
{
	height:150px !important;
}
/**/
#login_div{
    background: linear-gradient(
        75deg,
        #fff8e6,
        #e6fff1,
        #fff8e6,
        #e6fff1
    );
}

#login {
    border-radius: 15px;
    padding: 8px 18px;
    background: linear-gradient(135deg,  #FF4A6D, #ff7a18);
    border: none;
    color: #000000 !important;
    box-shadow: 0 10px 25px rgba(255, 74, 109, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


#login:hover{
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 35px rgba(255, 74, 109, 0.55);
    background: linear-gradient(135deg, #00ff8c, #ff7a18);
    color: #ffffff !important;
}
/**/
/* ===== NAVBAR GRADIENT CONTAINER ===== */
.container-fluid.nav-container {
    /*padding-left: 80px;*/
    padding-right: 24px;
    background: linear-gradient(180deg, #000000 0%, #0b1224 55%, #111827 100%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    border-radius: 0;
}
/* Dark mode navbar */
body.dark-mode .container-fluid.nav-container {
    background: linear-gradient(180deg, #000000 0%, #020617 100%);
}

/* Navbar transparent */
.navbar {
    background: transparent !important;
}

/* ================= FLAME TEXT BASE ================= */
.navbar-dark .navbar-nav .nav-link,
#logout, #back {
    font-weight: 600;
    position: relative;       /* needed for ::after */
    display: inline-block;    /* needed for ::after */
    /*padding: 5px 8px;*/
    line-height: 1.2;

    /* Fire gradient text */
    background: linear-gradient(
        90deg,
        #ff4500,
        /*#ffb600,*/
        #ff8c00,
        #ffd700,
        #ff4500
    );
    background-size: 400% 100%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    transition: transform 0.3s ease;
    transform: scale(1);
}

/* ================= UNDERLINE ================= */
/*.navbar-dark .navbar-nav .nav-link::after,*/
/*#logout::after, #back::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 10%;*/
/*    bottom: -6px;*/
/*    width: 80%;*/
/*    height: 3px;*/

/*    background: linear-gradient(*/
/*        90deg,*/
/*        #1FAD00,*/
/*        #ff8c00,*/
/*        #1FAD00*/
/*    );*/

/*    border-radius: 8px;*/
/*    opacity: 0;*/
/*    transform: scaleX(0.6);*/
/*    transition: all 0.3s ease;*/
/*}*/

/* ================= HOVER / ACTIVE ================= */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-item.active > .nav-link,
#logout:hover, #back:hover {
    animation: flameFlicker 1.5s linear infinite;
    transform: scale(1.05);
}


/* Show underline */
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after,
.navbar-dark .navbar-nav .nav-item.active > .nav-link::after,
#logout:hover::after, #logout:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ================= FLAME ANIMATION ================= */
@keyframes flameFlicker {
    0% {
        background-position: 0% 50%;
        text-shadow:
            0 0 4px #A4FB23,
            /*0 0 10px #ff8c00,*/
            0 0 18px #A4FB23;
    }
    50% {
        background-position: 100% 50%;
        text-shadow:
            0 0 6px #A4FB23,
            /*0 0 14px #ff8c00,*/
            0 0 26px #A4FB23;
    }
    100% {
        background-position: 0% 50%;
        text-shadow:
            0 0 4px #A4FB23,
            /*0 0 10px #ff8c00,*/
            0 0 18px #A4FB23;
    }
}
/* ===== SITE NAVIGATION ===== */
/*.site-navigation {*/
/*    padding: 12px 0;*/
/*}*/
/**/
/* =========================================================
   SUBSCRIBE CONTAINER – COMPACT MODERN CARD
========================================================= */
.subscribe {
    position: relative;
   /* padding: 7px 14px;          /* ↓ reduced height */
    border-radius: 14px;
    background: #0b0f1a;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* =========================================================
   LEFT VERTICAL ACCENT STRIP
========================================================= */
.subscribe::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;                 /* slightly thinner */
    height: 100%;
    background: linear-gradient(180deg, #A4FB23, #A4FB23);
    border-radius: 14px 0 0 14px;
}

/* =========================================================
   PATTERN OVERLAY – CHANGED COLOR
========================================================= */
.subscribe::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,204,51,0.20) 1px, transparent 1px);
    background-size: 18px 18px; /* tighter pattern */
    /*opacity: 0.35;*/
    pointer-events: none;
}

/* keep content above overlays */
.subscribe > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   ANIMATED GLOW ON HOVER
========================================================= */
.subscribe:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 38px rgba(0,0,0,0.55),
        0 0 28px rgba(255,182,0,0.35);
}

/* =========================================================
   TITLE STYLING
========================================================= */
.section-sub-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================================
   ICON BADGE – MATCHED COLOR
========================================================= */
.section-sub-title i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #A4FB23;
    color: #000;
    font-size: 14px;
    box-shadow: 0 5px 14px rgba(255,204,51,0.55);
}

/* =========================================================
   AUTO LIGHT BACKGROUND SUPPORT
========================================================= */
@media (prefers-color-scheme: light) {
    .subscribe {
        /*background: #ffffff;*/
        box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }

    .subscribe::before {
        background-image:
        radial-gradient(rgba(255,204,51,0.12) 1px, transparent 1px);
    background-size: 18px 18px; /* tighter pattern */
    }

    /*.section-sub-title {*/
    /*    color: #1a1a1a;*/
    /*}*/
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
    .subscribe {
        padding: 12px 18px;
    }

    .section-sub-title {
        font-size: 16px;
    }

    .section-sub-title i {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}
/**/
/* ===========================
   CARD BASE
=========================== */
.card {
    border-radius: 16px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    overflow: hidden;
}

/* ===========================
   HEADER BUTTON + TEXT COLOR
=========================== */
.card-header {
    border: none;
    background: transparent;
}

.card-header .btn {
    position: relative;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: #F0F0F0;
    border: none;
    transition: color 0.35s ease;
}

.card-header:hover .btn:hover {
    color: #1FAD00;
}

.card-header .btn:not(.collapsed) {
    color: #000000;
}

/* ===========================
   ICON STYLE (EXCEPT fa-lock)
=========================== */
/* Base icon styling */
.card-header .btn > i:not(.fa-lock):not(.fa-user-plus):not(.fa-envelope-circle-check) {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000000;
    color: #A4FB23;
    font-size: 14px;
    margin-right: 8px;
    box-shadow: 0 5px 14px rgba(255,204,51,0.55);
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

/* Hover animation (only applies to allowed icons) */
.card-header .btn:hover > i:not(.fa-lock):not(.fa-user-plus):not(.fa-envelope-circle-check) {
    transform: scale(1.15);
    cursor: pointer;
}


/* Icon color change only */
.card-header .btn:not(.collapsed) i {
    background: #1FAD00;
    color: #000000;
}
.card-header .btn.collapsed:hover i {
    background: #000000;
    color: #1FAD00;
}


/* ===========================
   ACCENT UNDERLINE
=========================== */
.card-header .btn::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 10px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.card-header .btn:not(.collapsed)::after {
    width: 130px;
}

/* ===========================
   BODY
=========================== */
.card-body {
    background: rgba(255,255,255,0.7);
    padding: 22px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: #000000;
}

/* ===========================
   FORM LABEL
=========================== */
.form-group label {
    font-weight: 600;
    color: #020617;
    position: relative;
    padding-bottom: 6px;
}

label.required::after {
    content: " *";
    color: #000000;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 576px) {
    .card-header .btn {
        font-size: 15px;
        padding: 14px 18px;
    }
}
/**/
 #image-preview {
  width: 100%;
  max-width: 500px;
  height: 200px;  
  border: 1px #ccc;
  display: none; 
  overflow: hidden;
  margin: 20px auto;
  text-align: center;
  position: relative;
}

#preview-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/**/
.form-control {
  box-shadow: none;
  border: 1px solid #000000;
  padding: 5px 20px;
  height: 44px;
  background: none;
  color: #959595;
  font-size: 14px;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #00FF8C !important;
}
/**/
.accordion-group .card-header .btn[aria-expanded="true"] {
  color: #1FAD00 !important;
}

.accordion-group .card-header .btn[aria-expanded="true"]::before {
  content: "\f106";
  background-color: #1FAD00 !important;
}
.accordion-group.accordion-classic .card-header .btn:before {
  display: none;
  
}
/**/
/* Accordion */
.accordion-group .card {
  border-radius: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #dfdfdf !important;
}

.accordion-group .card-body {
  padding: 15px 20px;
}

.accordion-group .card-body img {
  max-width: 100px;
  margin-bottom: 10px;
}

.accordion-group .card-header .btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 15px;
  padding-bottom: 10px;
}

.accordion-group .card-header .btn:before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  z-index: 0;
  font-size: 14px;
  right: 16px;
  padding: 3px 8px 1px;
  text-align: center;
  border-radius: 3px;
  top: 12px;
  content: "\f107";
  font-weight: 700;
  background-color: #000000 !important;
  color: #ffffff !important;
  transition: .3s;
}


.accordion-group .card-header .btn[aria-expanded="true"] {
  color: #ffb600;
}

.accordion-group .card-header .btn[aria-expanded="true"]::before {
  content: "\f106";
  background-color: #ffb600;
}

.accordion-group.accordion-classic .card-header .btn:before {
  display: none;
}
/**/
.accordion-group .card-header .btn:hover::before {
    background-color: #1FAD00 !important; /* hover bg */
    color: #000000 !important;            /* hover icon */
}
.accordion-group .card-header .btn:not(.collapsed)::before {
    /*transform: rotate(180deg);*/
    background-color: #1FAD00 !important;
    color: #000000 !important;
    pointer-events: none; /* prevents hover reaction */
}
/**/
/* ======================================================
   ICON BASE: smooth transition for all icons
====================================================== */
.accordion-group .card-header .btn i {
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* ======================================================
   HOVER EFFECT ONLY FOR ICONS THAT ARE NOT LOCK
   COLLAPSED STATE ONLY
====================================================== */
/*.accordion-group .card-header .btn.collapsed:hover i {*/
    /*background-color: #000000 !important;*/
    /*color: #1FAD00 !important;*/
/*}*/

/* ============================
   DISABLE HOVER / TRANSFORM FOR LOCKED ICONS
============================ */

/* General locked icons */
.accordion-group .card-header .btn i.fa-lock,
.accordion-group .card-header .btn i.fa-user-plus,
.accordion-group .card-header .btn i.fa-envelope-circle-check {
    pointer-events: none !important;
    transform: none !important;
    background-color: transparent !important;
    /*color: inherit !important;*/
    box-shadow: none !important;
    transition: none !important; /* prevent hover animations */
}

/* Collapsed hover state */
.accordion-group .card-header .btn.collapsed:hover i.fa-lock,
.accordion-group .card-header .btn.collapsed:hover i.fa-user-plus,
.accordion-group .card-header .btn.collapsed:hover i.fa-envelope-circle-check {
    transform: none !important;
    background-color: transparent !important;
    /*color: inherit !important;*/
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Expanded / open state */
.accordion-group .card-header .btn:not(.collapsed) i.fa-lock,
.accordion-group .card-header .btn:not(.collapsed) i.fa-user-plus,
.accordion-group .card-header .btn:not(.collapsed) i.fa-envelope-circle-check {
    transform: none !important;
    background-color: transparent !important;
    /*color: inherit !important;*/
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Explicitly block hover on before pseudo for locked icons */
.accordion-group .card-header .btn i.fa-lock::before,
.accordion-group .card-header .btn i.fa-user-plus::before,
.accordion-group .card-header .btn i.fa-envelope-circle-check::before {
    /*content: none !important;*/
    pointer-events: none !important;
}
/**/
.form-control:focus {
  box-shadow: none !important;
  border: 2px solid #00ff8c !important;
}

body {
    /*min-height: 100vh;*/
    margin: 0;
    padding: 0;

    /* Soft multi-color gradient */
    background: linear-gradient( 
        135deg, 
        #fefbe7, 
        #d3d3d3,
        #e0f7fa,
        #ffe4b5
    );
    background-attachment: fixed; /* stays in place on scroll */
    /*background-size: cover;*/

    font-family: 'Arial', sans-serif; /* optional */
}
#close {
    border-radius: 15px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #FF4A6D, #ff7a18);
    border: none;
    color: #000000 !important;
    box-shadow: 0 10px 25px rgba(255, 74, 109, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


#close:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 35px rgba(255, 74, 109, 0.55);
    background: linear-gradient(135deg, #ffb600, #ff7a18);
    color: #ffffff !important;
}
.select2-container--default .select2-selection--single {
    box-shadow: none;
    border: 1px solid #000000;
    padding: 5px 20px;
    height: 44px;
    background: none;
    color: #959595;
    font-size: 14px;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection__rendered {
    color: #959595;
    line-height: normal;
    padding-left: 0;
}

.select2-container--default .select2-selection__arrow {
    height: 44px;
}