/* styles.css */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   -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 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

.logo span {
  color: #4f46e5;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  color: #666;
}

.search-box {
  margin-top: 20px;
}

.search-box input {
  padding: 12px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.search-box button {
  padding: 12px 20px;
  border: none;
  background: #4f46e5;
  color: white;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
}

.categories {
  padding: 40px;
}

.categories h2 {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}

.compare-section {
  padding: 40px;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  padding: 20px;
  background: white;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }
}


/*terms & conditions*/
.dc-terms-section {
  padding: 40px 20px;
  background: #f9fafb;
}

.dc-container {
  max-width: 100%;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dc-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.dc-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.dc-term-block {
  margin-bottom: 20px;
}

.dc-term-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.dc-term-block p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}





/* ================= SOCIAL LINKS SECTION ================= */
.social-links {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}

.social-links h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.social-links p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* GRID */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  min-width: 220px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 14px;
  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.social-card i {
  font-size: 1.4rem;
}

/* HOVER EFFECT */
.social-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* BRAND COLORS */
.social-card.facebook i {
  color: #1877f2;
}

.social-card.youtube i {
  color: #ff0000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .social-card {
    width: 100%;
    justify-content: center;
  }
}