* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
   -webkit-tap-highlight-color: transparent; /*Stops default flash*/
}

/*Stops default flash*/
/* সব elements এর tap highlight বন্ধ */
/* {-webkit-tap-highlight-color: transparent;}*/

/* button, link click flash বন্ধ */
button,
a,
input,
textarea,
select {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* active/focus state remove */
button:focus,
button:active,
a:focus,
a:active {
  outline: none;
  box-shadow: none;
}

body {
  background: #0b0b12;
  color: #fff;
}

/* NAV */
/* .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(11,11,18,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
} */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  /* Glass effect */
  background: rgba(11, 11, 18, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  color: #fff;
}




/* .nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
} */
/* .nav-links a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
  transition: 0.3s;
  position: relative;
}
.nav-links a:hover {
  opacity: 1;
  color: #ff2e88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff2e88;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

 */
 
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;

  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  opacity: 0.75;
  transition: all 0.3s ease;

  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  opacity: 1;
  color: #ff2e88;
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;
  background: #ff2e88;

  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}










.menu-btn {
  display: none;
  background: none;
  color: white;
  font-size: 24px;
  border: none;
}








/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: radial-gradient(circle at top, #2a0a3d, #0b0b12);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.primary {
  background: #ff2e88;
  color: #fff;
}

.primary:hover {
  background: #ff4fa0;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 100px 60px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  opacity: 0.8;
  max-width: 700px;
  margin: auto;
}

.dark {
  background: #11111a;
}

/* GRID */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a26;
  padding: 25px;
  border-radius: 15px;
  width: 260px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* STEPS */
.steps {
  margin-top: 30px;
}

.step {
  margin: 10px auto;
  padding: 15px;
  max-width: 400px;
  background: #1a1a26;
  border-radius: 10px;
}

/* DOWNLOAD */
.download {
  background: linear-gradient(135deg, #2a0a3d, #11111a);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 80px 20px;
  }
}