
:root{
  --bg-main:#05070d;
  --bg-secondary:#0b1220;
  --card-bg:rgba(255,255,255,0.04);
  --card-bg-2:rgba(255,255,255,0.06);
  --border:rgba(255,255,255,0.09);
  --text:#f8fafc;
  --muted:#a2b0c8;
  --gold:#d4af37;
  --gold-light:#f3d87a;
  --blue:#2563eb;
  --blue-light:#60a5fa;
  --green:#22c55e;
  --red:#ef4444;
  --shadow:0 25px 65px rgba(0,0,0,0.45);
  --radius:26px;
}

/* Custom Mobile Navbar Final Fix */
@media (max-width: 991px) {
  .custom-mobile-menu {
    display: block !important;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;

    margin-top: 0;
    padding: 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;

    transform: translateY(-8px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      margin-top 0.25s ease,
      padding 0.25s ease,
      transform 0.25s ease;
  }

  .custom-mobile-menu.menu-open {
    max-height: 700px;
    opacity: 1;
    visibility: visible;

    margin-top: 14px;
    padding: 18px;
    background: #080f1d;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);

    transform: translateY(0);
  }

  .custom-mobile-menu .navbar-nav {
    gap: 8px;
  }

  .custom-mobile-menu .nav-link {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .custom-mobile-menu .nav-link:hover,
  .custom-mobile-menu .nav-link.active {
    background: rgba(212, 175, 55, 0.10);
  }

  .navbar .btn-outline-custom,
  .navbar .btn-main {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 8px;
  }
}

@media (min-width: 992px) {
  .custom-mobile-menu {
    display: flex !important;
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    transform: none;
  }
}
.site-logo {
  width: 200px;
  height: auto;
}

/* Mobile logo size */
@media (max-width: 576px) {
  .site-logo {
    width: 125px;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar mobile overflow fix */
.navbar {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Container mobile padding fix */
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    overflow-x: hidden;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero-badge {
    max-width: 100%;
    width: fit-content;
  }
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(212,175,55,0.12), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(37,99,235,0.16), transparent 25%),
    linear-gradient(180deg, #05070d 0%, #0b1220 50%, #05070d 100%);
  overflow-x:hidden;
  min-height:100vh;
}

a{
  text-decoration:none;
  color:inherit;
}

.navbar{
  background-color: #0c3f6e;
  background-image: linear-gradient(218deg, #0e1b3878, #022f70);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding: 16px 0px 10px;
}

.navbar-brand{
  font-weight:900;
  color:#fff !important;
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-placeholder{
  width:52px;
  height:52px;
  border-radius:16px;
  border:2px dashed rgba(212,175,55,0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(212,175,55,0.12), rgba(37,99,235,0.12));
  color:var(--gold-light);
  font-size:12px;
  font-weight:700;
  text-align:center;
  line-height:1.2;
  padding:4px;
  overflow:hidden;
}

.logo-placeholder img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-text small{
  color:var(--gold-light);
  font-size:11px;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.nav-link{
  color: #fff !important;
  font-weight:600;
  margin:0 8px;
  transition:.3s;
}

.nav-link:hover,
.nav-link.active{
  color:var(--gold-light) !important;
}

.btn-main,
.btn-outline-custom{
  border-radius:999px;
  padding:13px 24px;
  font-weight:800;
  transition:.3s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.btn-main{
  color:#0b1220;
  border:none;
  background:linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow:0 16px 40px rgba(212,175,55,0.22);
}

.btn-main:hover{
  color:#0b1220;
  transform:translateY(-2px);
}

.btn-outline-custom{
  color:#fff;
  border:1px solid rgba(212,175,55,0.35);
  background:rgba(255,255,255,0.03);
}

.btn-outline-custom:hover{
  color:#fff;
  background:rgba(212,175,55,0.10);
  transform:translateY(-2px);
}

.hero{
  padding:145px 0 90px;
  position:relative;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,0.22);
  background:rgba(255,255,255,0.04);
  color:var(--gold-light);
  font-weight:700;
  margin-bottom:25px;
}

.hero-badge span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(34,197,94,0.14);
}

.hero h1{
  font-size:clamp(40px, 6vw, 52px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:22px;
}

.gold-text{
  background:linear-gradient(135deg, #fff, var(--gold-light), var(--gold));
  -webkit-background-clip:text;
  color:transparent;
}

.hero p{
  color:var(--muted);
  font-size:18px;
  line-height:1.9;
  max-width:650px;
  margin-bottom:30px;
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:28px;
}

.hero-stat{
  min-width:140px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
}

.hero-stat h5{
  margin:0;
  font-size:22px;
  font-weight:900;
  color:#fff;
}

.hero-stat p{
  margin:6px 0 0;
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.hero-box{
  position:relative;
  border-radius:34px;
  padding:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(212,175,55,0.18);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-box::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-60px;
  top:-60px;
  background:radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
}

.terminal-card{
  position:relative;
  z-index:1;
  background:#08111f;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  overflow:hidden;
}

.terminal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.dots{
  display:flex;
  gap:7px;
}

.dots i{
  width:10px;
  height:10px;
  border-radius:50%;
  display:block;
}

.dots i:nth-child(1){background:#ef4444;}
.dots i:nth-child(2){background:#f59e0b;}
.dots i:nth-child(3){background:#22c55e;}

.image-space{
  width:100%;
  min-height:360px;
  border-radius:24px;
  border:2px dashed rgba(212,175,55,0.30);
  background:
    linear-gradient(135deg, rgba(212,175,55,0.08), rgba(37,99,235,0.10)),
    rgba(255,255,255,0.02);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:25px;
  color:var(--gold-light);
  font-weight:700;
}

.image-space img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.image-space i{
  font-size:48px;
  margin-bottom:14px;
  color:var(--gold);
}

.mini-market{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.mini-market strong{
  font-size:15px;
}

.mini-market span{
  display:block;
  font-size:13px;
  color:var(--muted);
}

.up{color:var(--green);}
.down{color:var(--red);}

.section{
  padding:95px 0;
}

.section-title{
  font-size:clamp(30px, 4vw, 54px);
  font-weight:900;
  margin-bottom:14px;
  letter-spacing:-1.5px;
}

.section-subtitle{
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
  max-width:760px;
}

.premium-card{
  height:100%;
  border-radius:28px;
  padding:30px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(212,175,55,0.16);
  position:relative;
  overflow:hidden;
  transition:.3s;
  box-shadow:var(--shadow);
}

.premium-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(180deg, var(--gold), var(--blue));
}

.premium-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.icon-wrap{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(212,175,55,0.16), rgba(37,99,235,0.18));
  color:var(--gold);
  font-size:24px;
  margin-bottom:20px;
}

.premium-card h4{
  font-size:21px;
  font-weight:800;
  margin-bottom:10px;
}

.premium-card p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

.about-box{
  border-radius:34px;
  padding:34px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(212,175,55,0.14);
  box-shadow:var(--shadow);
  height:100%;
}

.about-box h3{
  font-size:28px;
  font-weight:900;
  margin-bottom:14px;
}

.about-box p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:0;
}

.market-box{
  border-radius:26px;
  padding:28px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  height:100%;
  transition:.3s;
}

.market-box:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,0.28);
}

.market-box h5{
  font-weight:800;
  margin:14px 0 10px;
}

.market-box p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.account-card{
  height:100%;
  border-radius:30px;
  padding:34px 28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(212,175,55,0.14);
  box-shadow:var(--shadow);
  transition:.3s;
  position:relative;
  overflow:hidden;
}

.account-card.popular{
  border-color:rgba(212,175,55,0.35);
  background:linear-gradient(180deg, rgba(212,175,55,0.10), rgba(37,99,235,0.08));
}

.account-card:hover{
  transform:translateY(-8px);
}

.plan-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(212,175,55,0.12);
  color:var(--gold-light);
  font-weight:800;
  font-size:12px;
  margin-bottom:18px;
}

.account-card h3{
  font-weight:900;
  margin-bottom:10px;
}

.price{
  font-size:38px;
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}

.account-card .small-text{
  color:var(--muted);
  margin-bottom:20px;
}

.account-features{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.account-features li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:var(--muted);
  font-size:15px;
}

.account-features li strong{
  color:#fff;
  text-align:right;
}

.cta-box{
  border-radius:38px;
  padding:55px 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,0.18), transparent 30%),
    linear-gradient(135deg, rgba(212,175,55,0.10), rgba(37,99,235,0.12));
  border:1px solid rgba(212,175,55,0.20);
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-size:clamp(28px, 4vw, 48px);
  font-weight:900;
  margin-bottom:14px;
}

.cta-box p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:0;
}

/* Auth Pages */
.auth-page{
  min-height:100vh;
  padding:125px 0 70px;
  display:flex;
  align-items:center;
  position:relative;
}

.auth-page::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.85), transparent 85%);
  pointer-events:none;
}

.auth-wrapper{
  position:relative;
  z-index:1;
}

.auth-info-card{
  min-height:100%;
  border-radius:36px;
  padding:38px;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,0.18), transparent 35%),
    radial-gradient(circle at 88% 15%, rgba(37,99,235,0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border:1px solid rgba(212,175,55,0.18);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.auth-info-card h1{
  font-size:clamp(34px, 4vw, 56px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-1.5px;
  margin-bottom:20px;
}

.auth-info-card p{
  color:var(--muted);
  line-height:1.85;
  margin-bottom:24px;
}

.auth-image-space{
  margin-top:28px;
  min-height:260px;
  border-radius:28px;
  border:2px dashed rgba(212,175,55,0.32);
  background:
    linear-gradient(135deg, rgba(212,175,55,0.10), rgba(37,99,235,0.12)),
    rgba(255,255,255,0.025);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  color:var(--gold-light);
  padding:22px;
}

.auth-image-space i{
  font-size:46px;
  color:var(--gold);
  margin-bottom:14px;
}

.auth-benefits{
  display:grid;
  gap:14px;
  margin-top:25px;
}

.auth-benefit{
  display:flex;
  align-items:center;
  gap:12px;
  color:#dbe5f5;
  font-weight:700;
}

.auth-benefit i{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(212,175,55,0.12);
  color:var(--gold-light);
}

.auth-card{
  border-radius:36px;
  padding:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
  border:1px solid rgba(212,175,55,0.18);
  box-shadow:var(--shadow);
}

.auth-card-header{
  margin-bottom:26px;
}

.auth-card-header h2{
  font-size:32px;
  font-weight:900;
  margin-bottom:8px;
}

.auth-card-header p{
  color:var(--muted);
  margin:0;
  line-height:1.7;
}

.form-label{
  font-weight:800;
  color:#e7edf8;
  font-size:14px;
  margin-bottom:9px;
}

.input-group-custom{
  position:relative;
}

.input-group-custom i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gold-light);
  z-index:2;
}

.form-control,
.form-select{
  min-height:54px;
  border-radius:17px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.055);
  color:#fff;
  padding:13px 16px;
  box-shadow:none !important;
}

.input-group-custom .form-control{
  padding-left:48px;
}

.form-control:focus,
.form-select:focus{
  border-color:rgba(212,175,55,0.52);
  background:rgba(255,255,255,0.075);
  color:#fff;
}

.form-control::placeholder{
  color:rgba(162,176,200,0.78);
}

.form-select option{
  background:#0b1220;
  color:#fff;
}

.form-check-input{
  background-color:rgba(255,255,255,0.08);
  border-color:rgba(212,175,55,0.35);
  box-shadow:none !important;
}

.form-check-input:checked{
  background-color:var(--gold);
  border-color:var(--gold);
}

.form-check-label{
  color:var(--muted);
  font-size:14px;
}

.auth-link{
  color:var(--gold-light);
  font-weight:800;
}

.auth-link:hover{
  color:#fff;
}

.divider{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--muted);
  font-size:13px;
  margin:22px 0;
}

.divider::before,
.divider::after{
  content:"";
  height:1px;
  flex:1;
  background:rgba(255,255,255,0.10);
}

.auth-small{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.password-note{
  color:var(--muted);
  font-size:12px;
  margin-top:7px;
}

.footer{
  padding:70px 0 28px;
  background-color: #0c3f6e;
    background-image: linear-gradient(218deg, #0e1b3878, #022f70);
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer h5{
  font-weight:800;
  margin-bottom:16px;
}

.footer p,
.footer a{
  color:#fff;
}

.footer a:hover{
  color:var(--gold-light);
}

.risk-box{
  border-radius:20px;
  padding:18px;
  background: rgb(238 229 229 / 8%);
  border: 1px solid rgb(211 201 201 / 20%);
  color: #fff;
  line-height:1.7;
  font-size:14px;
}

.socials{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.socials a:hover{
  background:rgba(212,175,55,0.10);
}

@media (max-width:991px){
  .navbar-collapse{
    margin-top:16px;
    padding:0px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
  }
  .hero{
    padding-top:80px;
  }
  .auth-info-card{
    margin-bottom:24px;
  }
}

@media (max-width:576px){
  .hero h1{
    letter-spacing:-1px;
  }
  .hero-actions{
    display:grid !important;
  }
  .btn-main,
  .btn-outline-custom{
    width:100%;
  }
  .image-space{
    min-height:250px;
  }
  .section{
    padding:70px 0;
  }
  .cta-box{
    padding:36px 22px;
  }
  .auth-page{
    padding-top:105px;
  }
  .auth-card,
  .auth-info-card{
    padding:24px;
    border-radius:28px;
  }
}

.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(135deg, #d4af37, #f3d87a);
  color: #07101f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 18px 45px rgba(212,175,55,0.28);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all .3s ease;
}

.back-to-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover{
  color: #07101f;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(212,175,55,0.38);
}

@media (max-width: 576px){
  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/* Spark Background Canvas */
#sparkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  z-index: 0;
}

/* Website content canvas ke upar rahe */
.navbar,
.hero,
.section,
.footer {
  position: relative;
  z-index: 2;
}

/* Back To Top Button */
.back-to-top{
  position: fixed !important;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(135deg, #d4af37, #f3d87a);
  color: #07101f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 18px 45px rgba(212,175,55,0.28);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all .3s ease;
}

.back-to-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover{
  color: #07101f;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(212,175,55,0.38);
}

@media (max-width: 576px){
  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/* Premium Animated Background */
.animated-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(37,99,235,0.16), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(212,175,55,0.08), transparent 35%);
}

.animated-bg span {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: moveGlow 18s linear infinite;
}

.animated-bg span:nth-child(1) {
  background: rgba(212,175,55,0.35);
  top: 10%;
  left: 8%;
  animation-duration: 22s;
}

.animated-bg span:nth-child(2) {
  background: rgba(37,99,235,0.35);
  top: 18%;
  right: 8%;
  animation-duration: 26s;
}

.animated-bg span:nth-child(3) {
  background: rgba(243,216,122,0.25);
  bottom: 8%;
  left: 20%;
  animation-duration: 30s;
}

.animated-bg span:nth-child(4) {
  background: rgba(14,165,233,0.25);
  bottom: 12%;
  right: 18%;
  animation-duration: 24s;
}

@keyframes moveGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(80px, 60px) scale(1.15);
  }

  50% {
    transform: translate(40px, 140px) scale(0.95);
  }

  75% {
    transform: translate(-70px, 70px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Website content background ke upar rahe */
.navbar,
.hero,
.section,
.footer {
  position: relative;
  z-index: 2;
}

/* Back to top button fixed hi rahe */
.back-to-top {
  z-index: 9999;
}
