/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
html, body{
  height: 100%;
  margin: 0;
}
.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
 
}

.app-brand-logo.demo svg {
  width: 35px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir="rtl"] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.paginate_button{
  padding: 0px 5px;
}
.paginate_button a{
  padding: 0px 5px;
}

.bgcoverlogin{
  background-image: url('../img/backgrounds/bgLogin.jpg');
  background-size: cover;
    background-repeat: no-repeat;
}
.bgimage {
  background-image: url(../img/backgrounds/bgLogin.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: calc(100vh - 68px);
}

.form-control.is-invalid{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ea5455'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ea5455' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-x: right;
  background-position-y: center;
}

input.form-control.is-invalid:not([type="password"]):not([type="month"]):not([type="date"]) {
  background-position: right .875rem center, center right 2.45rem !important;
}

input.form-control.is-invalid[type="month"] {
  background-position: right 1.875rem center, center right 2.45rem !important;
}

input.form-control.is-invalid[type="date"] {
  background-position: right 1.875rem center, center right 2.6rem !important;
}

/* Ayaz custom css */

.marquee-container {
          
  background: linear-gradient( 72.47deg,#7367f0 22.16%,rgba(115, 103, 240, 0.7) 76.47% );
  color: white;
  padding: 15px 15px;
  
}

.static-text {
  font-size: 22px;
  font-weight: bold;
  color: #f8d210; 
  margin-bottom: 10px;
  text-align: left; 
}

.marquee-box {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  gap: 50px;
  animation: marqueeScroll 8s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

/* Smooth scrolling animation */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause animation on hover */
.marquee-box:hover .marquee-wrapper {
  animation-play-state: paused;
}
.viewmore{
float: inline-end;
}