@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ================================================================================================= */

/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
  position: relative;
  height: 100vh;
  margin-top: 80px;

  background-image: url("/assets/images/banners/privacy-policy-banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;      /* ✅ vertical center */
  justify-content: center;  /* ✅ horizontal center */

  overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.about-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(150, 255, 180, 0.2) 75%,
    rgba(150, 255, 180, 0.08) 100%
  );

  z-index: 1;
}

/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb {
  position: relative;
  z-index: 2; /* ✅ overlay वर */

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 40px;

  /* 🔥 gradient */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(20, 20, 20, 0.5) 40%,
    rgba(40, 40, 40, 0) 100%
  );

  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

  border: 1px solid rgba(255,255,255,0.08);

  /* ✨ glass effect */
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255,255,255,0.06);

  transition: all 0.3s ease;
  margin-bottom: 80px;
}

/* ========================= */
/* HOVER */
/* ========================= */
.breadcrumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(158, 255, 198, 0.088);
}

/* ========================= */
/* ICON */
/* ========================= */
.home-icon i {
  color: #9effc7;
  font-size: 14px;
  transition: 0.3s;
}

.breadcrumb:hover .home-icon i {
  transform: scale(1.2);
}

/* ========================= */
/* TEXT */
/* ========================= */
.breadcrumb-text {
  color: #bbb;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.breadcrumb-text:hover {
  color: #9effc7;
  cursor: pointer;
}

.breadcrumb-active {
  color: #fff;
  font-weight: 500;
}

.arrow {
  color: #777;
  font-size: 16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .about-hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {

  .about-hero {
    height: 60vh;
    padding: 0 15px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 8px 14px;
    gap: 6px;
  }

  .arrow {
    font-size: 14px;
  }
}


/* ================================================================================================== */


.privacy-text {
  background: #0f0f0f;
  padding: 80px 6%;
}

.privacy-container {
  max-width: 1100px;
  margin: auto;
}

.privacy-text h2 {
  color: #44db34;
  margin: 40px 0 12px;
  font-size: 20px;
}

.privacy-text p,
.privacy-text li {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-text ul {
  padding-left: 20px;
}

.privacy-text li {
  margin-left: 40px;
}

.privacy-text p{
   margin: 10px 0;
}

.privacy-text p span{
    color: #fff;
}

/* Privacy text animation */
.privacy-text p,
.privacy-text li,
.privacy-text h2 {
  opacity: 0.9;
  transition: opacity 0.5s ease;
}



* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
  will-change: transform, opacity;
}