/* ---------- Global Styles ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: white;
  position: relative;
  z-index: 1;
}

/* ---------- Background Blur Overlay ---------- */
.bg-blur::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('servicebg.png') center/cover no-repeat;
  filter: blur(8px) brightness(0.3);
  z-index: -1;
}

/* ---------- Header ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  width: 70px;
}

/* ---------- Back Button (Redesigned) ---------- */
.back-btn {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  background: rgba(51, 51, 51, 0.5); /* Semi-transparent for blur */
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(8px); /* Blurry glass effect */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  box-shadow:
    0 0 6px rgba(0, 255, 255, 0.2),
    0 0 20px rgba(0, 255, 255, 0.08); /* Side glow */
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(68, 68, 68, 0.6);
  transform: scale(1.05);
  color: #ffa64d;
  box-shadow:
    0 0 8px rgba(255, 165, 0, 0.6),
    0 0 25px rgba(255, 165, 0, 0.3); /* Orange glow on hover */
  border: 1px solid rgba(255, 165, 0, 0.4);
}



/* ---------- Tagline ---------- */
.tagline {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  max-width: 90%;
  margin: 30px auto;
  padding: 0 20px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
  word-break: break-word;
  white-space: normal;
}

/* ---------- Blog Box ---------- */
.blog-box {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.07); /* stronger blur */
  backdrop-filter: blur(10px); /* about 70% blur */
  border: 2px solid #333; /* dark gray border */
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.07),
    inset 10px 0 20px rgba(255, 255, 255, 0.05),
    inset -10px 0 20px rgba(255, 255, 255, 0.05);
}

/* ---------- Blog Image ---------- */
.img-box img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* ---------- Headings ---------- */
h1, h2 {
  margin-top: 30px;
}
h2 {
  border-bottom: 1px solid white;
  padding-bottom: 5px;
}

/* ---------- Table ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid white;
}
th, td {
  padding: 12px;
  border: 1px solid white;
  text-align: center;
}

/* ---------- FAQ Section ---------- */
.faqs {
  margin-top: 40px;
}
.faq {
  border: 1px solid white;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.faq:hover {
  box-shadow: 0 0 10px white;
}
.faq-answer {
  display: none;
  margin-top: 10px;
}
.faq-answer.show {
  display: block;
  animation: slideDown 0.3s ease-in-out forwards;
}
@keyframes slideDown {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ---------- Footer ---------- */
footer {
  background: #222;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
  font-size: 14px;
}

