
html {
  scroll-behavior: smooth;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #0a3129;
   font-family: 'Roboto Flex', sans-serif;
  line-height: 1.6;
}





/* Loader tashqi konteyneri */
.custom-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a3129;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Modalga xalaqit qilmasligi uchun ustunlik bilan */
  transition: opacity 0.5s ease-out;
}

/* Loader ichki bloki */
.custom-loader {
  width: 30vmin;
  height: 30vmin;
  max-width: 300px;
  max-height: 300px;
  min-width: 120px;
  min-height: 120px;
  position: relative;
  animation: pulse 1.5s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Loader rasmini uslubi */
.custom-loader img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animatsiya effekti */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

/* Planshet (1024px gacha) */
@media (max-width: 1024px) {
  .custom-loader {
    width: 25vmin;
    height: 25vmin;
    max-width: 250px;
    max-height: 250px;
    min-width: 100px;
    min-height: 100px;
  }
}

/* Mobil (768px gacha) */
@media (max-width: 768px) {
  .custom-loader {
    width: 40vmin;
    height: 40vmin;
    max-width: 200px;
    max-height: 200px;
    min-width: 100px;
    min-height: 100px;
  }
}

/* Kichik ekran (400px gacha) */
@media (max-width: 400px) {
  .custom-loader {
    width: 50vmin;
    height: 50vmin;
    max-width: 150px;
    max-height: 150px;
    min-width: 80px;
    min-height: 80px;
  }
}









/* Header */
header {
  background-color: #0a3129;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 30px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: 30px;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  display: block;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #a855f7;
}

.agent-btn {
  background-color: #6b21a8; /* Fixed to match design */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  
  width: auto;
  height: auto;
  white-space: nowrap;
}


section{
  margin-top: 70px;
}

.agent-btn:hover {
  background-color: #7e22ce;
  transform: translateY(-2px);
}

.language-selector {
  position: relative;
  margin-left: 20px;
}

.current-language {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;

  transition: background-color 0.3s ease;
}

.current-language:hover {
  background-color: #d1d5db;
}

.current-language img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 120px;
  max-height: 250px; /* balandlikni chekladik */
  overflow-y: auto; /* scroll qo‘shildi */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 8px;
  z-index: 100;
}


.language-dropdown.show {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.language-option:hover {
  background-color: #f9fafb;
}

.language-option.active {
  background-color: #e0f7f0;
}

.language-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
}

.language-option span {
  color: #1f2937;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff; /* Changed to white for better visibility */
  font-size: 24px;
  cursor: pointer;
}
 

/* Circular Shapes with Animation */
/* Hero Section */
.hero {
  background: #0a3129;
  color: #ffffff;
  min-height: 100vh;

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Main Circular Shapes with Animation */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.4),
    rgba(17, 24, 39, 0.1)
  );
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); /* Subtle glow effect */
  z-index: 1;
  animation: moveCircle 10s ease-in-out infinite alternate;
}

.hero::before {
  top: 20%;
  left: -100px; /* Start off-screen left */
  animation-name: moveFromLeft;
}

.hero::after {
  bottom: 20%;
  right: -100px; /* Start off-screen right */
  animation-name: moveFromRight;
}

.hero_subtitle{
  font-size: 18px;
  font-weight: 900 !important;
}

/* Smaller Orbiting Circles */
.hero .orbit-circle-left,
.hero .orbit-circle-right {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.2),
    rgba(168, 85, 247, 0.05)
  );
  z-index: 1;
  animation: orbit 5s linear infinite;
}

.hero .orbit-circle-left {
  top: 20%;
  left: -50px; /* Aligned with main circle */
}

.hero .orbit-circle-right {
  bottom: 20%;
  right: -50px; /* Aligned with main circle */
}

@keyframes moveFromLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(50vw - 100px)); /* Move toward center */
  }
}

@keyframes moveFromRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50vw + 100px)); /* Move toward center */
  }
}

@keyframes orbit {
  0% {
    transform: translate(0, 0) rotate(0deg) translateX(100px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; /* Content above circles */
}

.hero-content {
  max-width: 50%;
}

h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-highlight {
  color: #fff;
  font-weight: 800;
}

#heroSubtitle {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #6b21a8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 94px;
  height: 80px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

.hero-btn:hover {
  background-color: #7e22ce;
  transform: translateY(-2px);
}

.hero-image {
  max-width: 45%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Chat Message */
.chat-message {
  position: relative;
  max-width: 500px;
  margin: 30px 0;
}

 

.message-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.message-tail {
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #1f2937;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* Custom AOS Animation for Chat Message */
[data-aos="fade-up-zoom"] {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition-property: opacity, transform;
}

[data-aos="fade-up-zoom"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Custom AOS Animation for Hero Image */
[data-aos="zoom-in-right"] {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition-property: opacity, transform;
}

[data-aos="zoom-in-right"].aos-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@keyframes moveFromLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(50vw - 100px)); /* Move toward center */
  }
}

@keyframes moveFromRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50vw + 100px)); /* Move toward center */
  }
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; /* Content above circles */
}

.hero-content {
  max-width: 50%;
}

h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-highlight {
  color: #fff;
  font-weight: 800;
}

#heroSubtitle {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

 
.hero-btn:hover {
  background-color: #7e22ce;
  transform: translateY(-2px);
}

.hero-image {
  max-width: 45%;
  border-radius: 12px;
 
}


.hero-image:hover {
  transform: scale(1.05); /* Override pulse on hover */
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


@media (max-width: 768px) {
  .hero {
    background-image: url("images/hero-imgback.png");
    background-position: 200px -60px; /* chapdan 200px, yuqoriga 50px ko‘tariladi */
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: transparent;
    overflow: hidden;
  }
}



/* Chat Message */
.chat-message {
  position: relative;
  max-width: 500px;
  margin: 30px 0;
}

.message-content {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  line-height: 1.6;
  border: 1px solid rgba(168, 85, 247, 0.2);
  
}

.message-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.message-content p span.highlight {
  color: #a855f7;
  font-weight: 700;
}

.message-tail {
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #1f2937;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* Custom AOS Animation for Chat Message */
[data-aos="fade-up-zoom"] {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition-property: opacity, transform;
}

[data-aos="fade-up-zoom"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Custom AOS Animation for Hero Image */
[data-aos="zoom-in-right"] {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition-property: opacity, transform;
}

[data-aos="zoom-in-right"].aos-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Coins Section */
.coins-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.coins-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.coins-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.coin-item {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coin-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.coin-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: #a855f7;
}

.coin-name {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.coin-value {
  font-size: 16px;
  color: #6b7280;
}

/* Chat Message */
.chat-message {
  position: relative;
  max-width: 500px;
  margin: 30px 0;
  animation: fadeInUp 0.6s ease-out;
}

.message-content {
  background: #111827;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  line-height: 1.5;

margin-top: -20px;
}

.message-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 600; /* Bolder for emphasis */
  color: #ffffff;
}

.message-content p span.highlight {
  color: #fff;
  font-weight: 700;
}

.message-tail {
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #111827;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.better-span {
  font-weight: 900; /* Extra bold */
  font-size: 36px; /* Slightly larger */
  color: #ffffff;
}

.simple-bold {
  font-size: 48px; /* Larger for impact */
  font-weight: 800; /* Bolder */
  color: #ffffff;
  display: block; /* Changed to block for better spacing */
  
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {

  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
    
  }

 


  .hero-image {
    max-width: 100%;
  }

  h1 {
    font-size: 36px;
  }

  .better-span {
    font-size: 16px;
    text-align: start;
    padding: 0;
  margin: 0;
  line-height: -6;
 
  }

  .simple-bold {
    font-size: 30px;
    text-align: start;
  }

  #heroSubtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
    margin-right: 15px;
  }



  .language-selector {
    margin-left: 10px;
  }
}

/* Header Mobile Responsiveness */
@media (max-width: 992px) {
  .header-box {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }

  .logo {
    max-width: 150px; /* Adjusted for better fit */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 768px) {
  .header-box {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  nav {
    order: initial;
    width: auto;
    margin-top: 0;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0a3129;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-menu li a {
    padding: 12px 0;
    font-size: 16px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu-btn.active {
    transform: rotate(90deg);
  }

  .agent-btn {
    margin-left: 10px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .language-selector {
    margin-left: 10px;
    position: relative;
  }

  .language-dropdown {
    right: 0;
    left: auto;
  }

  .logo {
    max-width: 250px; /* Smaller logo for mobile */
    height: auto;
  }
}

@media (max-width: 576px) {
  .logo {
    max-width: 80%; /* Even smaller for small screens */
    /* Maintain specific height if needed */
  }

  .mobile-menu-btn {
    font-size: 24px;
    margin-right: 10px;
  }

  .agent-btn {
    padding: 6px 12px;
    font-size: 10px;
    margin-left: 5px;
  }

  .language-selector {
    margin-left: 5px;
  }

  .current-language {
    width: 32px;
    height: 32px;
  }

  .text-box {
    padding: 0;
    margin: 0;
    text-align: start;
    margin-top: -20px;
  }

  
  .message-content p {
    text-align: start;
    font-size: 14px; /* Smaller font size for mobile */
    line-height: 1.4; /* Adjusted line height for better readability */
  }
}





.steap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
   
}

.step-box {
  position: relative;
  background-color: #2d2d2d;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border-right: 5px solid #7e22ce;
  font-family: Arial, sans-serif;
  width: 350px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  overflow: hidden; 
  height: 200px;
}

.step-box p {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}

.step-number {
  position: absolute;
  bottom: 10px; /* Moved to bottom */
  right: 20px; /* Positioned on the right */
  font-size: 80px;
  color: #ff0000;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  opacity: 0.7; /* Slightly transparent */
  z-index: 0; /* Behind the text */
}

.step-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ff0000;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.step-text {
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
  position: relative;  
  z-index: 1;
top: -30px;
}
.step-text {
  text-transform: uppercase;
}









 
/* Kichik ekranlar uchun */
@media (max-width: 768px) {
  .steap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -15px;
  }
  
  .step-box {
    width: 100%;
    max-width: 350px;
    height: 50px;
  }


  .step-text{
  
    line-height: 1.3;
    position: relative;  
     left: 30px;
     font-size: 18px;
  }

  .step-number {
    font-size: 40px;
    left:  10px; /* Adjusted for smaller screens */
   top: 10px; /* Adjusted for smaller screens */
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;


   
  }





  .step-box {
 
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  overflow: hidden; 
  height: 60px;


  /* margin-top: -10px; */
  
}




.step-text {
 
 
top: 0px;
}




.hero-btn {
    width: 100%;
  background-color: #6b21a8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 54px;
  height: 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}
}





























/* mobcash  */
 
.mobcash-agent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: right;
}

.agent-content {
  width: 100%;
  max-width: 320px;
  background-color: #fff;
  color: #a855f7;
  padding: 10px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

 

 

 
.agent-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
}

 
.agent-content::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20%;
  transform: translateX(-40%) rotate(-10deg); /* Qiyshaytirish */
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #ffffff; /* Rang */
  z-index: 0;

}




.agent-text{
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 600;

  display: flex;
  justify-content: center;


}



.agent-title{
  width: 100%;
  color: #6b21a8 !important;
  font-size: 24px !important;
  font-weight: 600;
  margin: 0 !important;
  display: flex;
  justify-content: center;

}







.mob-cash-box {
  background-image: url('./images/mobimg1.png');
  background-size: 60% auto; /* Rasimni kichikroq qilish */
  background-position: 0% center; /* Chaproqqa surish */
  background-repeat: no-repeat;

  width: 100%;
 
  min-height: 300px;
  padding: 40px 20px 40px 200px;
  border-radius: 16px;
  color: white;
  position: relative;

  margin: 0 auto; /* Markazga keltirish */
}

@media (max-width: 768px) {
  .mob-cash-box {
    background-size: 100% auto; /* Rasm konteyner eniga mos */
    background-position: center top; /* Gorizontal o‘rtada, tepada */
    padding: 160px 20px 40px 20px; /* Rasm ustidan joy ajratish */
  }
}











.mobcash-section {
  
  padding: 40px 0;
}

.mob-cash-box {
 
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
}

.mobcash-agent {
  
  border-radius: 16px;
   
  position: relative;
  margin-bottom: 30px;
}

.agent-content h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.agent-content p {
  color: #e9d5ff;
  font-size: 18px;
  line-height: 1.6;
 
}

 

.agent-btn:hover {
  background-color: #f3e8ff;
  transform: translateY(-2px);
}

.kelishuv {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  

  
}

.kelishuv-box1 {
  display: flex;
  align-items: center;
  gap: 20px;
 width: 800px;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  padding-left: 150px;
}

.kelishuv-box1:hover {
  transform: translateY(-5px);
 
}

.kelishuv-numb {
  color: #fff;
  background-color: red;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 18px;
}

.kelishuv-text {
  width: 400px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
}

.kelishuv-img {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  object-fit: contain;

}













.agent-btn-mobchash{
   margin-top: 50px;
  transition: all 0.3s ease;
  width: 340px;
  height: 60px;
  border-radius: 10px;
  background-color: #7e22ce;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border: none;
}


@media (max-width: 768px) {
  .kelishuv{
    display: none;
  }
}





















































.agent-title-hidden {
  display: none;
}



/* Mobile Responsive Styles (under 768px) */




@media (max-width: 768px) {
  .mobcash-section {
    padding: 20px 0;
  }



  .agent-content {
  width: 100%;
  max-width: 420px;
 
}



  .agent-title-hidden {
    display: block;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: start;
    margin-top: -100px;
  }

  .agent-title{

    display: none; /* Hide the original title on mobile */
  }
  

  .mob-cash-box {
    padding: 0 15px;
    flex-direction: column;
  }

  .mobcash-agent {
   display: flex;
   align-items: center;
   flex-direction: column;
    margin-left: 0;
    
    background-position: center;
    margin-bottom: 20px;
  }

  .agent-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .agent-content p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .agent-btn-mobchash {
    margin-top: 30px;
    width: 100%;
    max-width: 340px;
    height: 50px;
    font-size: 16px;
  }

  .kelishuv {
    display: none;
  }
}



















.gaming-platform {
  margin-top: 50px;
  padding: 20px 0;
}

.gaming-platform-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 100px;
}

.platform-content {
  flex: 1;
  max-width: 600px;
}

.platform-logo {
  width: 250px;
  margin-bottom: 20px;
}

.platform-heading {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  margin: 0;
}

.platform-description p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.banner-container {
  position: relative;
  margin-top: 30px;
}

.prize-image {
  max-width: 100%;
  height: auto;
}

.flag-agen{
  background-color: #6b21a8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}



.flag-agent:hover {
  background-color: #9333ea;
  transform: translateY(-2px);
}

.platform-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.platform-image img {
  max-width: 100%;
  height: auto;
}

.mobile-image {
  display: none;
}



.mob-img1{
  display: none;
}


.mob{
  display: none;
}
/* Responsive Styles */
@media (max-width: 992px) {
  .platform-heading {
    font-size: 24px;
    text-align: start;
    margin: 0;
    
  }
  
  .platform-description p {
    font-size: 15px;

    text-align: start;
  }
}

@media (max-width: 768px) {
  .gaming-platform-container {
    flex-direction: column;
    text-align: center;
  }
  
  .platform-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
 .platform-logo {
   
  display: flex;
  justify-content: start;
}

  .platform-heading {
    font-size: 22px;
    margin: 0 auto 15px;
    max-width: 90%;
  }
  
  .platform-description p {
 
    font-size: 14px;
  }
  
  .platform-image {
    display: none;
  }
  
  .mobile-image {
    display: block;
    max-width: 300px;
    margin: 30px auto 0;
  }
  
  .flag-agent {
    padding: 12px 25px;
    font-size: 15px;
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .platform-logo {
    width: 200px;
  }
  
  .platform-heading {
    font-size: 20px;
    margin: 0;
  }
  
  .platform-description p {
    font-size: 13px;
  }
  
  .flag-agent {
    width: 100%;
    max-width: 250px;
  }


  .prize-image{
    display: none;
  }

  .mobile-image {
    display: none;
  }


  .flag-agen{
    display: none;
  }


  .mob-img1{
    margin-top: -100px;
    display: block;
    width: 300px;
    
  }

  .mob{
  display: block;
  width: 100%;
  background-color: #6b21a8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
  margin-top: -100px;
  }


.container {
  max-width: 100%;
  width: 100%;
 
  box-sizing: border-box;
}


}







.footer-logo{
margin: 0;

}


footer {
 margin-top: 50px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow items to wrap on small screens */
  gap: 20px; /* Add some space between items when they wrap */
}

.footer-logo {
  max-width: 100px; /* Make logo responsive */
  height: auto;
}



.footer-text {
  color: #ffffff;
 
}














.menedjer-text {
  font-size: 72px;
  color: #fff;
  font-family: 'Roboto Flex', sans-serif;
  line-height: 1.5;
}

.menedjer {
  background: url(./images/xarita.png) right / 60% auto no-repeat;
  image-rendering: crisp-edges;
}

.telegram-box {
  width: 120px;
  height: 80px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-box img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.telegram-button {
  width: 280px;
  height: 100px;
  background-color: #43ade3;
  display: flex;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 16px;

  padding: 20px;
}


.telegram-text{
    font-size: 22px;
    font-family: 'Roboto Flex', sans-serif;
    line-height: 1.5;
      font-weight: bold; /* Qalin shrift */
}


@media (max-width: 768px) {
  .menedjer-text {
    font-size: 36px;
  }



.telegram-button {
  width: 280px;
  height: 80px;
  background-color: #43ade3;
  display: flex;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 16px;
}


.telegram-box {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}







  .menedjer {
    background: url(./images/xarita.png) center / cover no-repeat;
    image-rendering: auto;
  }


  .telegram-text{
    font-size: 14px;
    font-family: 'Roboto Flex', sans-serif;
    line-height: 1.5;
      font-weight: bold; /* Qalin shrift */
}
}





















@media (max-width: 768px) {
    .footer-box {
      flex-direction: column; /* Stack vertically on mobile */
      align-items: flex-start; /* Align to the left */
      padding: 20px; /* Add padding for better spacing */
    }

    .footer-logo {
      margin-bottom: 10px; /* Space between logo and text */
      margin-right: 0; /* Remove right margin on mobile */
    }

    .footer-text {
      text-align: left; /* Ensure text is left-aligned */
    }
  }











  .submit-btn{
  background-color: #6b21a8;
  }









/* Form Section Styles */
.form-section {
  font-family: 'Arial', sans-serif;
  padding: 40px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
 

.form-box {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #a855f7;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-box h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #6b21a8;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.form-box h1:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #a855f7;
  border-radius: 3px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
  background-color: #fff;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(123, 36, 206, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-box {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 30px 0;
  }
  
  .form-box {
    padding: 30px;
  }
  
  .form-box h1 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .form-box {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .form-box h1 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .form-control {
    padding: 14px 16px;
  }
  
  .submit-btn {
    padding: 15px;
  }
}

/* Label Styles (if you add labels later) */
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

/* Error Message Styles (for form validation) */
.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-control.error {
  border-color: #ef4444;
}

.form-control.error + .error-message {
  display: block;
}


.uppercase-text {
  text-transform: uppercase;
}















/* Form Row for Side-by-Side Inputs */
.form-row {
  display: flex;
  gap: 20px; /* Space between side-by-side inputs */
  flex-wrap: wrap; /* Allow wrapping if needed */
}

/* Ensure each form-group in a row takes equal width */
.form-row .form-group {
  flex: 1; /* Each input takes equal space */
  min-width: 0; /* Prevent overflow issues */
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    display: block; /* Stack inputs on mobile */
  }
  
  .form-row .form-group {
    flex: none; /* Reset flex properties */
    width: 100%; /* Full width on mobile */
  }
}



































 

.qalqib-chiquvchi-oyna {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .qalqib-chiquvchi-oyna-mazmun {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
  }
  .qalqib-chiquvchi-oyna-yopish {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  .qalqib-chiquvchi-oyna-ikon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 10px;
  }