/* Navbar Base Styles */
.navbar {
    height: 80px;
    background-color: #12ad2b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 40px;
    right: 20px;
    z-index: 1000;
    border-radius: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Logo Section */
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .navbar .logo a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-left: 12px;
    text-decoration: none;
  }
  
  /* Menu Section */
  .menu {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .menu-links {
    display: flex;
    gap: 24px;
    border-right: 1px solid #fff;
    padding-inline: 24px;
  }
  
  .menu-links a {
    font-weight: 500;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
  }
  
  .menu-links a:hover {
    color: green;
    background-color: white;
  }
  
  /* Log In Button */
  .log-in {
    font-weight: 500;
    padding: 12px 22px;
    background-color: transparent;
    color: white;
    border-radius: 10px;
    border: 2px solid #fcfcfc;
    transition: 0.2s;
    cursor: pointer;
  }
  
  .log-in:hover {
    background-color: whitesmoke;
    color: orange;
  }
  
  /* Menu Toggle Icon (Mobile) */
  .menu-btn {
    font-size: 32px;
    color: white;
    display: none;
    cursor: pointer;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: hsl(0, 0%, 10%);
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
  }
  
  .dropdown-content a {
    color: #999999;
    padding: 12px 16px;
    display: block;
    font-weight: 500;
    text-decoration: none;
  }
  
  .dropdown-content a:hover {
    color: black;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar {
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      height: 60px;
      width: auto;
      padding-top: 0%;
      padding-bottom: 0%;
      padding-right: 20px ;
      padding-left: 10px;
    }
  
    .logo {
      flex-shrink: 1;
      display: flex;
      align-items: center;
    }
  
    .navbar .logo a {
      font-size: 1.2rem;
    }
  
    .menu {
      display: flex;
      flex-direction: column;
      background-color: #12ad2b;
      position: absolute;
      top: 90px;
      left: 0;
      width: 100%;
      padding: 10px;
    }
  
    .menu.show {
      display: flex;
      margin-left: 28px;
      background-color: rgba(211, 211, 211, 0.8);
      border-radius: 8px;
    }
    .menu.show :hover{
      color: #12ad2b;
      pointer-events: #12ad2b;
    }
  
    .menu-links {
      flex-direction: column;
      border: none;
    }
  
    .log-in {
      margin-top: 10px;
      width: 100%;
      padding: 8px;
      text-align: center;
      border-radius: 6px;
    }
  
    .menu-btn {
      display: block;
      flex-shrink: 0;
    }
  }
  
  
  @media (max-width: 53rem) {
    .menu {
      display: none;
      flex-direction: column;
      background-color: #12ad2b;
      position: absolute;
      top: 90px;
      left: 0;
      width: 80%;
      padding: 10px;
    }
  
    .menu.show {
      display: flex;
    }
  
    .menu-links {
      flex-direction: column;
      border: none;
    }
  
    .log-in {
      margin-top: 10px;
      width: 100%;
    }
  
    .menu-btn {
      display: block;
    }
  }
  /* ----------------------------------------------------- */
.section-title {
  font-weight: bold;
  /* font-size: 1.2em; */
}
.center-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    margin-top: 38px;
    background-color: #f2f2f2; /* Optional light background */
    padding: 20px 10px;
  }
  
  .box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    width: 100%;
  }
  
  .container.my-5 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .container.my-5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }  
.privacypolicy-box {
    max-width: 1200px;
    height: auto;
    margin: auto;
    font-size: 0.95rem;
    position: relative;
    border-radius: 82px !important;
}
  
.privacypolicy-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    width: 350px;
    height: 350px !important;
    z-index: 0;
    pointer-events: none;
}
  
.privacypolicy-body {
    font-size: 24px;
    font-weight: 300;
    z-index: 1;
    position: relative;
    padding-top: 25px;
}
  
.divider {
    display: block; /* Ensures it behaves like a block element */
    margin: 0 auto; /* Centers the element horizontally */
    width: 800px;
    border-top: 2px solid #12ad2b !important;
    border-bottom: 2px solid #12ad2b !important;
    border-left: 8px solid white;
    border-right: 8px solid white;
    position: relative;
  }
  
  
  .divider::before,
  .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: #12ad2b;
  }
  
.divider::before {
    left: -10px;
}
  
.divider::after {
    right: -10px;
}
  
.privacypolicy-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    padding-bottom: 10px;
  }


@media (max-width: 1199px) {
    .privacypolicy-box {
      padding: 2rem;
      font-size: 0.9rem;
    }
  
    .privacypolicy-logo-bg {
      width: 250px;
      height: 250px;
    }
  
    .privacypolicy-heading {
      font-size: 36px;
    }
  
    .divider {
      width: 100%;
    }
  
    .privacypolicy-body {
      font-size: 22px;
    }
}
  

@media (max-width: 991px) {
    .privacypolicy-box {
      padding: 1.5rem;
    }
  
    .privacypolicy-logo-bg {
      width: 200px;
      height: 200px;
    }
  
    .privacypolicy-heading {
      font-size: 32px;
    }
  
    .divider {
      width: 80% !important;
    }
  
    .privacypolicy-body {
      font-size: 20px;
    }
}
  

@media (max-width: 767px) {
    .privacypolicy-box {
      padding: 1rem;
    }
  
    .privacypolicy-logo-bg {
      width: 150px;
      height: 150px;
    }
  
    .privacypolicy-heading {
      font-size: 28px;
    }
  
    .divider {
      width: 80% !important;
    }
  
    .privacypolicy-body {
      font-size: 18px;
    }
}
  

@media (max-width: 575px) {
    .privacypolicy-box {
      padding: 1rem;
    }
  
    .privacypolicy-logo-bg {
      width: 120px;
      height: 120px;
    }
  
    .privacypolicy-heading {
      font-size: 24px;
    }
  
    .divider {
      width: 90% !important;
    }
  
    .privacypolicy-body {
      font-size: 16px;
    }
}
  