/* General Styles */
body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* .container {
    max-width: 600px;
} */

/* Card Styling */
.card {
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
input {
  border-radius: 8px !important;
}

button {
  border-radius: 8px !important;
}

/* Navbar */
.navbar {
  /* background-color: #007bff; */
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.navbar a {
  color: #000 !important;
}


#globalNotifyBtn {
    position: fixed;
    right: 18px;
    bottom: 90px;
    background: #00223f;
    color: #fff;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    z-index: 99999;
}

#globalNotifyBadge {
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
    display: none;
}

@keyframes bellShake {
    0% { transform: rotate(0); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
    100% { transform: rotate(0); }
}

.notify-animate {
    animation: bellShake 0.8s infinite;
    box-shadow: 0 0 20px rgba(255,0,0,.7);
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-success {
  background-color: #28a745;
}

.btn-danger {
  background-color: #dc3545;
}

/* Tables */
.table {
  background-color: white;
}

.table th {
  background-color: #002147;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 20px;
  }
}

/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.hero {
  /* background: url("images/lottery-banner.jpg") no-repeat center center/cover; */
  
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: -5%;
}
.hero.bg_img{
  background-image: url('./assets/images/banner/home-Banner.jpg');
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
} */

.hero .container {
  position: relative;
  z-index: 1;
}

.site-logo-2 img{
   display:none;
}

.menu-fixed.affix .site-logo-2 img{
display:block;
width: 130px;
}

.menu-fixed.affix .site-logo img{
display:none;
}

/* How It Works */
h2 {
  font-weight: 600;
  color: #007bff;
}

.img-fluid {
  transition: transform 0.3s ease-in-out;
}

.img-fluid:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #343a40;
  color: white;
}

.container {
  /* width: 50%; */
  /* margin: 50px auto;
    text-align: center;
    font-family: Arial, sans-serif; */
}
.header .site-logo img {
  width: 160px !important;
}

.profile-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
  color: #333;
}

p {
  font-size: 18px;
  margin: 10px 0;
}

.slick-dots {
  display: flex;
  justify-content: center;
}
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
  display: none;
}
.slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  z-index: 2;
  display: none;
}

.slick-dots li button {
  font-size: 16px !important;
}
.slick-dots li {
  margin-right: 10px;
}

/* .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
} */

/* .btn-danger {
    background: red;
} */

.recent-winner-card {
  background-color: #20204e;
  border: 1px solid #36eef3;
  box-shadow: inset 0 0 15px #37f5f9d9;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

.recent-winner-card::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  right: -15px;
  bottom: -24%;
  background-color: #094e98;
  border-radius: 46% 54% 55% 45% / 35% 38% 62% 65%;
  transform: rotate(-38deg);
}

.recent-winner-card__number {
  position: absolute;
  right: 25px;
  font-size: 25px;
  color: #9c9898;
  font-weight: 900;
  top: 15px;
  transition: 0.2s linear;
}

.recent-winner-card__name {
  margin-bottom: 10px;
}

.recent-winner-card .amount {
  color: #37f5f9;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

h5 {
  font-size: 20px;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: max-content;
  background-color: transparent;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg);
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
  color: #ffffff;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language_text {
  color: #ffffff;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #20204e;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  padding: 7px 0 !important;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 10%);
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

body {
  background-color: #f8f9fa;
}
.dashboard-container {
  /* display: flex; */
  min-height: 100vh;
}
.dashboard-container table thead tr {
  background-color: #002147;
}
.sidebar {
  background: #002147;
  color: white;
  min-width: 250px;
  height: 100vh;
}
.sidebar .nav-link {
  color: white;
  text-align: left;
  font-size: 18px;
}
.sidebar .nav-link.active {
  background: #28a745;
}
.tab-content {
  padding: 20px;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  margin-top: 20px;
}

.sidebar h4 {
  color: #fff;
}

.nav-bg {
  background-color: #002147;
}
.tab-pane input.form-control {
  padding: 0.5rem 0.75rem;
  border: 1px solid #002147;
}
