/* Navbar styles */
*{
  margin: 0;
  padding: 0;
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;
}

.navbar-links ul {
  margin: 0;
  padding: 0;
}

.nav-link {
  color: gold;
  text-decoration: none;
  padding: 2px 20px;
  margin: 20px;
  font-weight: 700;
  font-size: larger;

  border-radius: 10px;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  color: #0056b3;
  text-decoration: red dashed solid;
  background-color: rgb(3, 3, 3);
}
body {
  margin: 0;
  padding: 0;
  
   background-image: url('./img/stars.jpg');
  /* Set the background-image and initial position */

background-position: 0 0;
/* Add the animation properties */
background-size: 150% 100%;

animation: moveBackground 10s linear infinite;
}
@keyframes moveBackground {
0% {
background-size: cover;

background-position: 0 0;
background-repeat: no-repeat;

}
50% {
background-size: cover;

background-position: 50% 0%;

}

100% {
background-size: cover;
background-position: 100% 0%;


}
}
.product-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 80%;
 gap: 20px;

}
.site-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 0px 20px 20px;
  width: 100%;
}

.card1 {
  width:fit-content; /* Adjust based on the number of cards per row */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;

  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.048);
  animation: card1 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;

}

@keyframes card1{
  0% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}


#cardimg {
  width: 100%;
  height: 100px;
  object-fit: cover; /* Maintain aspect ratio */
}

.card-info {
  padding: 20px;
}

.card-info h2 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.card-info p {
  margin: 10px 0;
  font-size: 16px;
}

.card-info button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-info button:hover {
  background-color: #0056b3;
}
.pro{
  width: 100%;
  justify-content: center;
  padding: 20px;
}
.hero-sec{
  display: flex;
  justify-content: space-between;
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  
 
  justify-content: center;
  text-align: center;
}

.card1 {
  width: 200; /* Set fixed width */
  height: 200;
  background: gold;

  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.316); /* Box shadow for 3D effect */
  overflow: hidden;
  transition: transform 0.3s ease;
  color: #fff;
  padding: 10px;

  margin: 10px;
}

.card1:hover {
  transform: scale(1.05); /* Scale effect on hover */

  background: linear-gradient(45deg, #bdbdb9d0, #335a872f, #0057b34a, #c7d5d5);
}

.card-body {
  background-image: url(img/PUBG-Mobile-UC-Station.png);
  background-position: center;
  background-size: cover;
  padding: 15px;
  margin-bottom: 10px;
  height: 150px;
  width: 150px;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.card-body p {
  font-size: 2em;
  margin-bottom: 10px;
  font-family: "alexandria" sans-serif;
  color: red;
  text-align: center;
  font-weight: 500;

  border-radius: 20px;

  -webkit-text-stroke: 1px black; /* Width and color of the stroke */
}

.card-title {
  font-size: 20px;
  margin: 10px;
  font-family: "Black Ops One", sans-serif;
  color: #0f056b;
  
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  border-radius: 20px;
 

  -webkit-text-stroke: 1px rgb(53, 45, 1); /* Width and color of the stroke */
}
.card-cate{
  width: 200px;
  height: 200px;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
}

.navbar-item a:hover {
  background-color: #ffea00;
  color: black;
  transform: scale(1.05);
}

/* Products Section styling */
#products-section {
  margin-top: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  
  

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card input[type="text"],
.product-card input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#uploadButton {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#uploadButton:hover {
  background-color: #45a049;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .navbar-item {
    float: none;
    width: 100%;
    text-align: center;
  }

  .product-card input[type="text"],
  .product-card input[type="number"] {
    width: calc(100% - 20px);
    /* Adjust padding for smaller screens */
    padding: 8px;
  }

  #uploadButton {
    padding: 8px 16px;
  }
}
#products-section {
  padding: 20px;
}

/* Footer styling */
footer {
  background-color: #03406a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-family: "luckiest guy" sans-serif;
  bottom: 0;
}


#supr {
  margin-top: 0px;
  margin-bottom: 25px;
  width: 100%;
  height: fit-content;
  justify-content: center;
  display: flex;
  color: gold;
  font-family: "alexandria", sans-serif;
}
.navbar-brand {
  position: fixed;

  left: 20px;
  width: 100px;
  height: auto;
  z-index: 1000; /* Ensure logo is above other content */
}
.navbar-brand::after {
  opacity: 0;
}





/* Add this CSS to your existing style.css or in <style> tags in the head */

/* Style for the container */
.container1 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Style for the form */
.input-form {
  background-color: #0f056b;
  direction: rtl;

  padding: 20px;
  border-radius: 10px;
}

/* Style for the form groups */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

/* Style for the file input */
.form-control-file {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;

  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background: linear-gradient(90deg, gold, gold);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#textpay {
  font-size: 1.25em;
  color: gold;
  font-family: "alexandria", sans-serif;
  font-weight: 500;
}

/* Style for the text input */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: gold;
  background: linear-gradient(90deg, gold, gold);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Style for the button */
#btn-3d {
  background-color: rgb(25, 236, 5);
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
  max-width: 200px;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
}

#btn-3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.467);
}
#textInput {
  font-family: "oswald" sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  color: black;
  font-family: "alexandria", sans-serif;
  background-color: gold;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  width: auto;
}
#prodtlscon {
  display: flex;
  direction: rtl;
  justify-content: space-between;
  padding: 20px;
}
#prodtlscon img {
  position: left;
  width: 100px;
  height: 100px;
}
#prodtlscon h3 {
  position: right;
  color: gold;
  font-size: 40px;
  font-weight: 600;
  -webkit-text-stroke: 1px rgba(197, 98, 11, 0.792); /* Width and color of the stroke */
}
#prodtlscon p {
  position: right;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  -webkit-text-stroke: 1px gold; /* Width and color of the stroke */
}

#paydtls {
  position: right;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  -webkit-text-stroke: 1px rgb(245, 249, 247); /* Width and color of the stroke */
  margin: 15px;
  text-align: center;
}
#imageInput {
  font-family: "oswald" sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  color: black;
  font-family: "alexandria", sans-serif;
  background-color: gold;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  width: auto;
}
label {
  color: gold;
  font-weight: 600;
  font-family: "alexandria", sans-serif;
  margin: 20px 0;
}
input {
  font-family: "oswald" sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  color: black;
  font-family: "alexandria", sans-serif;
  background-color: gold;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  width: auto;
}
.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(255, 163, 26, .7);
  --c-color-2: #1a23ff;
  --c-color-3: #e21bda;
  --c-color-4: rgba(255, 232, 26, .7);
  --c-shadow: rgba(255, 223, 87, .5);
  --c-shadow-inset-top: rgba(255, 223, 52, .9);
  --c-shadow-inset-bottom: rgba(255, 250, 215, .8);
  --c-radial-inner: #ffd215;
  --c-radial-outer: #fff172;
  --c-color: #000;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  font-family: 'alexandria',sans-serif;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(circle, var(--c-radial-inner), var(--c-radial-outer) 80%);
  box-shadow: 0 0 14px var(--c-shadow);
  animation: uiverse 0.3s linear infinite both;
}
@keyframes uiverse {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}


.uiverse:before {
  content: '';
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow: inset 0 3px 12px var(--c-shadow-inset-top), inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1, .uiverse .wrapper .circle.circle-9, .uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3, .uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5, .uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2, .uiverse .wrapper .circle.circle-7, .uiverse .wrapper .circle.circle-8, .uiverse .wrapper .circle.circle-11, .uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }

  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }

  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }

  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }

  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }

  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }

  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }

  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }

  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }

  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }

  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }

  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }

  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}










.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
  border: 0 solid;
  box-sizing: border-box;
  justify-content: center;
}

.btn-53 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #0f056b;
  text-align: center;
  width: 150px;
  
  
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.btn-53:disabled {
  cursor: default;
}

.btn-53:-moz-focusring {
  outline: auto;
}

.btn-53 svg {
  display: block;
  vertical-align: middle;
}

.btn-53 [hidden] {
  display: none;
}

.btn-53 {
  border: 1px ;
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  overflow: hidden;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
  
}

.btn-53 .original {
  background: #0f056b;
  color: gold;
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.btn-53:hover .original {
  transform: translateY(100%);
}

.btn-53 .letters {
  display: inline-flex;
}

.btn-53 span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.btn-53 span:nth-child(2n) {
  transform: translateY(15px);
}

.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.btn-53:hover span:nth-child(3) {
  transition-delay: 0.2s;
}

.btn-53:hover span:nth-child(4) {
  transition-delay: 0.3s;
}

.btn-53:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.btn-53:hover span:nth-child(6) {
  transition-delay: 0.5s;
}
#btn-53-container{
  
  padding: 10px;
  display: flex;
  justify-content: center;
  
}
.section-separator{
  height: 1px;
  background-color: gold;
  margin: 1rem 0;
}