.activepolicy {
  color: #fff !important;
  font-weight: bold;
  position: relative;
}

.activepolicy::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 24px; /* distance from text */
  width: 30%;
  height: 2px; /* thickness of underline */
  background-color: #fff; /* underline color */
  border-radius: 2px;
}

.privacy-policy-hero {
  background-image: url(../images/privacy-policy/Privacy-Policy.png);
  height: 300px;
  position: relative;
}

.privacy-policy-hero > div {
  padding-top: 140px;
  padding-left: 60px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  z-index: 2;
  position: relative;
}

.privacy-policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .privacy-policy-hero > div {
    padding-top: 95px;
    padding-left: 40px;
    font-size: 40px;
    font-weight: bold;
    color: white;
  }
}

.figma-footer {
  background: #edecec5d;
  padding: 80px 60px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left {
  max-width: 330px;
}

.footer-logo {
  margin-bottom: 5px;
}

.footer-desc {
  font-size: 18px;
  line-height: 32px;
  color: #000;
  margin-bottom: 40px;
}
#submit {
  border-radius: 15px;
  height: 50px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social {
  width: 45px;
  height: 45px;
  display: flex !important;
  background-color: #efefef;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  color: #000;
  transition: 0.3s;
  border-radius: 50%;
}

.footer-social:hover {
  border-color: #2254c5;
  background-color: #e8eaec;
  transform: translateY(-10px);
}

/* QUICK LINKS */
.footer-links h3,
.footer-contact h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer-links a {
  display: block;
  font-size: 20px;
  margin-bottom: 22px;
  color: #000;
  text-decoration: none;
}

.privacy-policy-item {
  background-color: #e4eaf72e;
  padding-left: 30px;
  padding-top: 30px;
  border-radius: 30px 0px 0px 30px;
}

.footer-links a:hover {
  color: #2254c5;
}

/* privacy-policy */
.footer-privacy-policy p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #000;
  line-height: 28px;
}

.footer-privacy-policy i {
  margin-right: 12px;
  font-size: 20px;
  color: #000;
}

/* BOTTOM ROW */
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.footer-bottom span {
  color: #2254c5;
  font-weight: 400;
}

.bottom-links {
  display: flex;
  gap: 40px;
}

.bottom-links a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #2254c5;
}
/* Modern Popover Style */
.popover {
  border-radius: 0px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 0px 0;
  min-width: 100px;
  font-size: 16px;
  font-weight: 600;
}

.header-popover {
  margin-top: 0px !important;
  position: fixed;
}

.footer-popover {
  margin-bottom: 10px !important;
}

/* Remove default arrow */
.popover .arrow {
  display: none;
}

/* Remove title space */
.popover-title {
  display: none;
}

/* Style content */
.popover-content {
  padding: 0;
}

/* Product links styling */
.popover-content a {
  display: block;
  padding: 5px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin: 0px;
}

/* Hover effect */
.popover-content a:hover {
  background: #f5f7ff;
  color: #2254e5;
  /* padding-left: 15px; */
}
/* Cursor only on text */
.trigger-text {
  cursor: pointer;
}
/* Footer specific adjustment */
#footerProductsPopover + .popover {
  margin-bottom: -8px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .bottom-links {
    justify-content: center;
  }
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 18px;
  color: black;
}

.footer-info img {
  width: 25px;
  margin-top: 5px;
}

/* ✅ privacy-policy Page Toggle Button Fix */
.privacy-policy-navbar .navbar-toggle {
  /* border: 2px solid black !important; */
  margin-top: 25px !important;
  margin-right: 15px !important;
}

/* .logo-container {
  padding: 10px 0px 0px 0px;
} */

/* ✅ Hamburger bars black */
.privacy-policy-navbar .navbar-toggle .icon-bar {
  background-color: black !important;
}

/* ✅ Fix toggle position on mobile */
@media (max-width: 768px) {
  .privacy-policy-navbar {
    /* height: auto !important; */
    padding: 10px 15px !important;
  }

  .privacy-policy-navbar .navbar-header {
    width: 100%;
  }

  .privacy-policy-navbar .navbar-toggle {
    position: absolute;
    right: 15px;
    top: 20px;
  }
  .logo-container {
    padding: 10px 0px 0px 0px;
  }
}
