body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

header {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #191919;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}
/* ===== Header Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;

  padding: 4px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .logo img {
    height: 35px;
    width: 35px;
  }
  .logo span {
    font-size: 1.2rem;
  }
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease;
}

nav a:hover {
  color: #39c3ef;
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #111;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid #222;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 0;
  transition: color 0.2s ease;
  display: block;
}

.mobile-nav a:hover {
  color: #39c3ef;
}

.mobile-nav.active {
  display: flex;
  max-height: 250px;
  padding: 10px 0;
}

/* Section Styles */
.service-block {
  background: #121212;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 80px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.custom-header {
  background: linear-gradient(to right, #111, #1b1b1b);
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.custom-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #39c3ef;
}

.custom-header p {
  max-width: 700px;
  margin: 15px auto;
  color: #ccc;
}

.service-block img {
  width: 60%;
  max-width: 600px;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 15px;
}

.service-block h3 {
  color: #39c3ef;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.service-block p {
  color: #d9d9d9;
  margin-bottom: 18px;
  text-align: justify;
}

.back-btn {
  text-align: center;
  margin: 60px 0;
}

.back-btn a {
  background: #39c3ef;
  color: #0d0d0d;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.back-btn a:hover {
  background: #2da7cc;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .service-block img {
    width: 90%;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html,
body {
  height: 100%;
  background: #0d0d0d;
  color: #fff;
}
a {
  color: inherit;
}

/* === Blue Border Hover Animation for Images === */
.detail-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.detail-box:hover img {
  transform: scale(1.03);
  border: 2px solid #39c3ef; /* Blue border */
  box-shadow: 0 0 18px rgba(57, 195, 239, 0.35);
}

header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
header nav a {
  color: #cfcfcf;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 600;
  transition: color 0.18s ease;
}
header nav a:hover {
  color: #39c3ef;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 60px 0;
  padding: 10px 18px;
  background: #161616;
  color: #39c3ef;
  text-decoration: none;
  border: 1px solid #39c3ef;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.back-btn:hover {
  background: #39c3ef;
  color: #fff;
  transform: translateY(-3px);
}

.hero {
  text-align: center;
  padding: 56px 20px 28px;
}
.hero h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.hero p {
  color: #bfbfbf;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 48px 60px 80px;
}

.detail-box {
  background: linear-gradient(180deg, #0f0f0f 0%, #131313 100%);
  border: 1px solid #1b1b1b;
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.28s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.45s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.detail-box:hover img {
  transform: scale(1.03);
}

.detail-box h3 {
  color: #39c3ef;
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.detail-box p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.detail-box:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #39c3ef;
  box-shadow: 0 12px 28px rgba(57, 195, 239, 0.15);
}

footer {
  text-align: center;
  color: #888;
  padding: 36px 0;
  border-top: 1px solid #191919;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  header {
    padding: 16px 18px;
  }
  .back-btn {
    margin: 20px 18px 0;
    display: inline-block;
  }
  .hero {
    padding: 36px 16px 20px;
  }
  .service-details {
    padding: 26px 16px 60px;
    gap: 18px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html,
body {
  height: 100%;
  background: #0d0d0d;
  color: #fff;
}
a {
  color: inherit;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 60px 0;
  padding: 10px 18px;
  background: #161616;
  color: #39c3ef;
  text-decoration: none;
  border: 1px solid #39c3ef;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.back-btn:hover {
  background: #39c3ef;
  color: #fff;
  transform: translateY(-3px);
}

.hero {
  text-align: center;
  padding: 56px 20px 28px;
}
.hero h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.hero p {
  color: #bfbfbf;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 48px 60px 80px;
}

.detail-box {
  background: linear-gradient(180deg, #0f0f0f 0%, #131313 100%);
  border: 1px solid #1b1b1b;
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.28s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.45s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.detail-box:hover img {
  transform: scale(1.03);
}

.detail-box h3 {
  color: #39c3ef;
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.detail-box p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.detail-box:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #39c3ef;
  box-shadow: 0 12px 28px rgba(57, 195, 239, 0.15);
}

footer {
  text-align: center;
  color: #888;
  padding: 36px 0;
  border-top: 1px solid #191919;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  header {
    padding: 16px 18px;
  }
  .back-btn {
    margin: 20px 18px 0;
    display: inline-block;
  }
  .hero {
    padding: 36px 16px 20px;
  }
  .service-details {
    padding: 26px 16px 60px;
    gap: 18px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: #0d0d0d;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #191919;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
  position: sticky;
  top: 0;
  z-index: 50;
}
header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
header nav a {
  color: #cfcfcf;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 600;
  transition: color 0.18s ease;
}
header nav a:hover {
  color: #39c3ef;
}

.hero {
  text-align: center;
  padding: 60px 20px 20px;
}
.hero h2 {
  font-size: 2.4rem;
  color: #0fabdf;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.hero p {
  color: #bfbfbf;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 48px 60px 80px;
}

.testimonial-card {
  background: linear-gradient(180deg, #0f0f0f 0%, #131313 100%);
  border: 1px solid #1b1b1b;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #39c3ef;
  box-shadow: 0 10px 25px rgba(255, 59, 59, 0.06);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 2px solid #39c3ef;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #a9a9a9;
  margin-bottom: 12px;
}

.testimonial-text {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.45;
}

footer {
  text-align: center;
  color: #888;
  padding: 36px 0;
  border-top: 1px solid #191919;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  header {
    padding: 16px 18px;
  }
  .hero {
    padding: 40px 16px 16px;
  }
  .testimonials {
    padding: 30px 16px 60px;
    gap: 20px;
  }
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html,
body {
  height: 100%;
  background: #0d0d0d;
  color: #fff;
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  padding: 28px 0 18px;
}
.hero h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 8px;
}
.hero p {
  color: #bfbfbf;
  font-size: 0.96rem;
  margin-bottom: 6px;
}

/* Terms Grid */
.policy {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-top: 18px;
}

/* Article */
.policy-article {
  background: linear-gradient(180deg, #0f0f0f, #131313);
  border: 1px solid #1b1b1b;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  color: #ddd;
  line-height: 1.65;
  font-size: 0.98rem;
}
.policy-article h3 {
  color: #39c3ef;
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  scroll-margin-top: 100px;
}
.policy-article h4 {
  color: #fff;
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  scroll-margin-top: 100px;
}
.policy-article p,
.policy-article li {
  color: #cfcfcf;
  font-size: 0.95rem;
}
.policy-article ul {
  margin-left: 1.05rem;
  margin-top: 8px;
}
.policy-article li {
  margin-bottom: 8px;
}

/* TOC */
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: #0e0e0e;
  border: 1px solid #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  color: #cfcfcf;
  font-size: 0.95rem;
}
.toc h4 {
  color: #fff;
  margin-bottom: 10px;
}
.toc a {
  display: block;
  color: #bdbdbd;
  padding: 6px 0;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.toc a:hover {
  color: #39c3ef;
}

/* Footer */
footer {
  text-align: center;
  color: #888;
  padding: 28px 0;
  border-top: 1px solid #191919;
  margin-top: 28px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .policy {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    margin-top: 10px;
  }
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html,
body {
  height: 100%;
  background: #0d0d0d;
  color: #fff;
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* Header */

/* Container */
.container {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  padding: 28px 0 18px;
}
.hero h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 8px;
}
.hero p {
  color: #bfbfbf;
  font-size: 0.96rem;
  margin-bottom: 6px;
}

/* Policy grid */
.policy {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-top: 18px;
}

/* Article */
.policy-article {
  background: linear-gradient(180deg, #0f0f0f, #131313);
  border: 1px solid #1b1b1b;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  color: #ddd;
  line-height: 1.65;
  font-size: 0.98rem;
}
.policy-article h3 {
  color: #39c3ef;
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  scroll-margin-top: 100px;
}
.policy-article h4 {
  color: #fff;
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  scroll-margin-top: 100px;
}
.policy-article p,
.policy-article li {
  color: #cfcfcf;
  font-size: 0.95rem;
}
.policy-article ul {
  margin-left: 1.05rem;
  margin-top: 8px;
}
.policy-article li {
  margin-bottom: 8px;
}

/* TOC */
.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: #0e0e0e;
  border: 1px solid #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  color: #cfcfcf;
  font-size: 0.95rem;
}
.toc h4 {
  color: #fff;
  margin-bottom: 10px;
}
.toc a {
  display: block;
  color: #bdbdbd;
  padding: 6px 0;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.toc a:hover {
  color: #39c3ef;
}

/* Footer */
footer {
  text-align: center;
  color: #888;
  padding: 28px 0;
  border-top: 1px solid #191919;
  margin-top: 28px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .policy {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    margin-top: 10px;
  }
}

/*testemonials section */
.hero h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #39c3ef;
}
.testimonials-h2 {
  text-align: center;
  padding: 60px 20px 20px;
  color: aqua;
}

.testimonials.section {
  background-color: #0d0d0d;
  color: #be0808;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: #39c3ef;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 15px;
}

.section-title p {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonial-card {
  background: #151515;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 25px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #39c3ef;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #39c3ef;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-meta h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}

.testimonial-meta span {
  color: #aaa;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.testimonial-bottom {
  margin-top: 60px;
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 40px 30px;
}

.testimonial-bottom h3 {
  color: #39c3ef;
  margin-bottom: 10px;
}

.testimonial-bottom p {
  color: #bbb;
}

.btn.btn-accent {
  background-color: #39c3ef;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.btn-accent:hover {
  background-color: #000;
}

.testimonial-stars {
  color: #f5c518;
  margin-top: 12px;
}

/* Fixed header */
header {
  position: sticky; /* Sticks at the top */
  top: 0;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0); /* Start transparent */
  backdrop-filter: blur(10px); /* Optional glass effect */
  
  z-index: 999;
}

/* When scrolled (simulate by using :not(:first-child) or scroll container) */
header.scrolled {
  background: rgba(255, 255, 255, 1); /* Fully opaque */
  padding: 10px 20px; /* Optional shrink */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}