body {
  font-family: "Outfit", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  color: #222;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
  height: 6rem;
}

/* Override Bootstrap container width */
.container {
  max-width: 1180px !important;
  /* or any width you want */
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 6rem;
}

.navbar img {
  width: 160px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 400;
}

.navbar a:hover {
  color: #035dbe;
}

.btn-primary {
  background-color: #035dbe;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #024b9a;
}

.navbar a.experience-unify-btn {
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  line-height: normal;
  cursor: pointer;
  display: inline-block;
  height: fit-content;
  color: #fff;
  height: fit-content;
  background: linear-gradient(162deg, rgba(14, 148, 214, 1) 0%, rgba(0, 92, 191, 1) 100%);
  border-radius: 20px 0px 20px 20px;
  transition: 0.3s;
  font-size: var(--font-small);
  border: 1px solid var(--colorWhite);
  min-width: 192px;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  justify-content: space-between;
}


.hero-section {
  background: linear-gradient(to right, #035dbe, #024b9a);
  color: white;
  text-align: left;
  padding: 80px 20px 100px;
  min-height: 500px;
  background-image: url('../../privacy_policy/images/bg-img.png');
  /* https://unifyams.ai/public */
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: ' ';
  background-color: rgba(0, 2, 13, 0.8);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-section p {
  font-size: 18px;
  color: #fff;
}

.content-section {
  background: #fff;
  /* margin: 60px auto; */
  padding: 40px;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  border-radius: 0 13rem 0 13px;
  position: relative;
  top: -13rem;
}

.content-section h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #035dbe;
}

.content-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}

footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px;
  margin-top: 60px;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

footer img {
  height: 45px;
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin: 8px 0;
}

footer ul li a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #f2a00f;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width:768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .content-section {
    padding: 20px;
  }
}

/* Fade-in animation for content sections */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}

.content-section h2,
.content-section p {
  opacity: 0;
  transform: translateY(30px);
}

/* Sticky header shadow effect */
header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile nav */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 15px;
    width: 100%;
    border-top: 1px solid #eee;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    text-align: center;
  }
}

/* Dropdown styles */
.navbar ul li ul {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar ul li ul li {
  margin: 0;
  padding: 8px 20px;
}

.navbar ul li ul.show {
  display: block;
}

/* --- Dropdown Slide + Hover Behavior --- */
.navbar ul li {
  position: relative;
}

.navbar ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5;
}

/* Desktop hover open */
.navbar ul li:hover>ul.open,
.navbar ul li:hover>ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Links inside dropdown */
.navbar ul li ul li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.navbar ul li ul li a:hover {
  color: #035dbe;
  background: #f6f8ff;
}

/* --- Mobile slide behavior --- */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 8px;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 0;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li ul {
    position: relative;
    box-shadow: none;
    border: none;
    padding: 0;
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 1;
    transform: none;
    transition: max-height 0.4s ease-in-out;
  }

  .navbar ul li ul.open {
    max-height: 500px;
  }

  .navbar ul li a {
    padding: 12px 20px;
    width: 100%;
  }
}

/* --- Fade-in animation --- */
.content-section h2,
.content-section p {
  opacity: 0;
  transform: translateY(25px);
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}

/* Sticky header shadow */
header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-overlay-content h1 {
  font-size: 45px;
  color: #ffffff;
  line-height: normal;
  font-family: "Outfit", sans-serif !important;
  font-weight: 400;
  margin-bottom: 50px;
}

.header-overlay-content p{
  font-size: 25px;
  color:  #ffffff;
  margin-top: 8px;
  line-height: normal;
}

.header-overlay-content {
 position: relative;
}
