* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b1020;

  color: white;

  font-family: Arial, sans-serif;
}

/* HEADER */

header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background: #141b34;
}

nav {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px 8%;
}

.logo {
  color: #2563eb;

  font-size: 30px;

  font-weight: bold;
}

nav ul {
  display: flex;

  gap: 40px;

  list-style: none;
}

nav ul a {
  text-decoration: none;

  color: white;

  transition: 0.3s;
}

nav ul a:hover {
  color: #2563eb;
}

/* BUTTONS */

.buttons {
  display: flex;

  gap: 15px;
}

nav ul li a {
  transition: 0.4s;
}

nav ul li a:hover {
  color: #2563eb;

  transform: translateX(10px);
}

nav ul li a.active {
  color: blue;

  border-radius: 15px;

  transform: translateX(10px);
}

.buttons a {
  text-decoration: none;

  padding: 14px 25px;

  border-radius: 12px;
}

.login {
  border: 1px solid #2563eb;

  color: white;
}

.register {
  background: #2563eb;

  color: white;
}

/* MENU */

.menu-btn {
  display: none;

  font-size: 35px;

  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 8%;

  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 70px;

  margin-bottom: 25px;
}

.hero-left p {
  color: #9ca3af;

  font-size: 20px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 20px;
}

.hero-buttons a {
  text-decoration: none;

  background: #2563eb;

  color: white;

  padding: 16px 30px;

  border-radius: 15px;
}

/* HERO IMAGE */

.hero-right {
  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;
}

.hero-image {
  width: 100%;

  max-width: 550px;

  animation: floating 4s ease-in-out infinite;
}

/* FLOATING ANIMATION */

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;

    text-align: center;

    gap: 50px;
  }

  .hero-image {
    max-width: 350px;
  }
}
#typingText::after {
  content: "|";

  color: #2563eb;

  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* STATS */

.stats {
  padding: 100px 8%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;
}

.stat {
  background: #141b34;

  padding: 40px;

  border-radius: 20px;

  text-align: center;
}

.stat h1 {
  color: #2563eb;

  margin-bottom: 15px;
}

/* CALCULATOR */

.calculator {
  padding: 100px 8%;

  text-align: center;
}

.calculator p {
  color: #9ca3af;

  margin: 20px 0 50px;
}

.calculator-box {
  background: #141b34;

  max-width: 700px;

  margin: auto;

  padding: 50px;

  border-radius: 25px;
}

.calculator input,
.calculator select {
  width: 100%;

  padding: 18px;

  margin-bottom: 20px;

  border: none;

  outline: none;

  background: #0b1020;

  color: white;

  border-radius: 15px;
}

.calculator button {
  width: 100%;

  padding: 18px;

  background: #2563eb;

  color: white;

  border: none;

  border-radius: 15px;

  cursor: pointer;

  transition: 0.3s;
}

.calculator button:hover {
  background: #1d4ed8;
}

.result {
  margin-top: 40px;
}

.result h3 {
  margin-bottom: 20px;
}

.result span {
  color: #22c55e;
}

/* FEATURES */

.features {
  padding: 100px 8%;
}

.features h1 {
  text-align: center;

  margin-bottom: 60px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;
}

.feature {
  background: #141b34;

  padding: 40px;

  border-radius: 20px;

  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
}

/* REFERRAL */

.referral {
  padding: 100px 8%;

  text-align: center;
}

.referral p {
  color: #9ca3af;
}

.referral-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 25px;

  margin-top: 60px;
}

.referral-card {
  background: #141b34;

  padding: 50px 30px;

  border-radius: 25px;

  transition: 0.4s;
}

.referral-card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 50px;

  margin-bottom: 20px;
}

.referral-card h2 {
  margin-bottom: 20px;
}

.referral-btn {
  display: inline-block;

  margin-top: 50px;

  padding: 18px 35px;

  background: #2563eb;

  color: white;

  text-decoration: none;

  border-radius: 15px;

  transition: 0.3s;
}

.referral-btn:hover {
  background: #1d4ed8;
}

/* ABOUT */

.about {
  padding: 100px 8%;

  text-align: center;
}

.about p {
  color: #9ca3af;

  margin-top: 30px;
}

/* PLANS */

.plans {
  padding: 100px 8%;
}

.plans h1 {
  text-align: center;

  margin-bottom: 60px;
}

.plan-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;
}

.plan {
  background: #141b34;

  padding: 40px;

  border-radius: 20px;

  text-align: center;

  transition: 0.3s;
}

.plan:hover {
  transform: translateY(-10px);
}

.plan h1 {
  color: #2563eb;

  margin: 20px 0;
}

/* STEPS */

.steps {
  padding: 100px 8%;
}

.steps h1 {
  text-align: center;

  margin-bottom: 60px;
}

.step-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;
}

.step {
  background: #141b34;

  padding: 40px;

  border-radius: 20px;

  text-align: center;
}

/* TESTIMONIALS */

.testimonials {
  padding: 100px 8%;

  text-align: center;
}
.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.testimonial-buttons button {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #f5b300;
  color: #111;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(245, 179, 0, 0.5);
}

.testimonials p {
  color: #9ca3af;
}

.testimonial-card {
  background: #141b34;

  max-width: 700px;

  margin: 60px auto 0;

  padding: 50px;

  border-radius: 30px;

  transition: 0.5s;
}

.fade {
  opacity: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  width: 120px;

  height: 120px;

  object-fit: cover;

  border-radius: 50%;

  border: 4px solid #2563eb;
}

.testimonial-card h2 {
  margin-top: 20px;
}

.testimonial-card h4 {
  color: #9ca3af;

  margin: 15px 0;
}

.stars {
  font-size: 25px;

  margin-bottom: 25px;
}
/* FAQ */

.faq {
  padding: 100px 8%;
}

.question {
  background: #141b34;

  padding: 30px;

  border-radius: 20px;

  margin-bottom: 20px;
}

.faq-item {
  background: #141b34;

  margin-bottom: 20px;

  border-radius: 20px;

  overflow: hidden;
}

.question {
  padding: 25px;

  cursor: pointer;
}

.answer {
  max-height: 0;

  overflow: hidden;

  color: #9ca3af;

  transition: 0.4s;

  padding: 0 25px;
}

.faq-item.active .answer {
  max-height: 200px;

  padding: 0 25px 25px;
} /* CONTACT */

.contact {
  padding: 100px 8%;
}

.contact h1 {
  text-align: center;

  margin-bottom: 60px;
}

.contact-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 25px;
}

.contact-card {
  background: #141b34;

  padding: 40px;

  border-radius: 20px;

  text-align: center;

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card h3 {
  margin: 20px 0;

  color: #2563eb;
}

.contact-card p {
  color: #9ca3af;
}

/* FOOTER */

/* FOOTER */

footer {
  background: #141b34;

  padding: 100px 8% 40px;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 50px;
}

.footer-section h2 {
  color: #2563eb;

  margin-bottom: 20px;
}

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-section p {
  color: #9ca3af;

  line-height: 1.8;
}

.footer-section a {
  display: block;

  color: #9ca3af;

  text-decoration: none;

  margin-bottom: 15px;

  transition: 0.3s;
}

.footer-section a:hover {
  color: #2563eb;

  padding-left: 10px;
}

footer hr {
  margin: 60px 0 30px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  text-align: center;

  color: #9ca3af;
}
/* SOCIAL MEDIA */

.socials {
  display: flex;

  gap: 20px;

  margin-top: 20px;
}

.socials a {
  width: 50px;

  height: 50px;

  background: #0b1020;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: white;

  font-size: 20px;

  transition: 0.4s;
}

.socials a:hover {
  background: white;

  transform: translateY(-7px);
}

@media (max-width: 768px) {
  .footer-grid {
    gap: 40px;
  }
}

/* FLOATING BUTTONS */

.floating-buttons {
  position: fixed;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 20px;

  z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
  width: 60px;

  height: 60px;
  text-decoration: none;
  border: none;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: white;

  font-size: 25px;

  cursor: pointer;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;

    text-align: center;

    padding-top: 100px;
  }

  .hero-left h1 {
    font-size: 45px;
  }

  .hero-buttons {
    justify-content: center;
  }

  @keyframes drop {
    to {
      opacity: 1;

      transform: translateY(0);
    }
  }
}
/* PARTNERS */

.partners {
  padding: 100px 8%;

  text-align: center;
}

.partners p {
  color: #9ca3af;

  margin: 20px 0 60px;
}

.partner-slider {
  overflow: hidden;

  position: relative;
}

.partner-track {
  display: flex;

  width: calc(250px * 10);

  animation: scroll 20s linear infinite;
}

.partner {
  width: 250px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.partner img {
  width: 120px;

  transition: 0.4s;
}

.partner img:hover {
  filter: grayscale(0);

  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}
/* CTA */

.cta {
  padding: 100px 8%;
}

.cta-box {
  padding: 80px 50px;

  text-align: center;
}

.cta-box h1 {
  font-size: 50px;

  margin-bottom: 30px;
}

.cta-box p {
  max-width: 700px;

  margin: auto;

  color: #e5e7eb;

  line-height: 1.8;
}

.cta-buttons {
  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 20px;
}

.cta-buttons a {
  text-decoration: none;

  padding: 18px 35px;

  border-radius: 15px;

  transition: 0.3s;
}

.cta-register {
  background: white;

  color: #2563eb;
}

.cta-login {
  border: 2px solid white;

  color: white;
}

.cta-buttons a:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cta-box h1 {
    font-size: 35px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* FLOATING BUTTONS */

.floating-buttons {
  position: fixed;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 20px;

  z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
  width: 60px;

  height: 60px;

  border: none;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  color: white;

  font-size: 25px;

  cursor: pointer;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.live-chat {
  background: #2563eb;
}

.whatsapp {
  background: #25d366;
}

#topBtn {
  background: #141b34;
}

.floating-buttons a:hover,
.floating-buttons button:hover {
  transform: translateY(-10px);
}

.mobile-auth {
  margin-top: 100px;
  display: none;
  flex-direction: column;
  gap: 15px;
}

.mobile-login,
.mobile-register {
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.mobile-login {
  border: 1px solid #f5b300;
  color: white;
}

.mobile-register {
  background: #2563eb;
  color: white;
}
.mobile-auth a:hover {
  color: #f5b300;
}

@media (max-width: 768px) {
  .mobile-auth {
    display: flex;
  }

  .buttons {
    display: none;
  }
}

.trust-marquee {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.trust-track span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}
.notification {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #181818;
  color: white;
  padding: 18px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;

  opacity: 0;
  transform: translateY(30px);

  transition: 0.5s;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification-icon {
  font-size: 28px;
}

.notification a {
  color: #f5b300;
  text-decoration: none;
  font-size: 14px;
}

.live-users{
    margin-top:30px;
    margin-left:20px;

    display:flex;
    align-items:center;
    gap:10px;
padding: 100px 8%;
    color:#fff;
    font-size:17px;
    font-weight:500;
}

.dot {
  width: 12px;
  height: 12px;
  background: #00ff66;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width:768px){

    .live-users{
        margin-left:15px;
        margin-right:15px;
        font-size:15px;
    }

}
input,
textarea,
select,
button {
  font-size: 16px;

  -webkit-appearance: none;

  appearance: none;
}

