/* ==============================
   PRIVACY POLICY DARK MODE
============================== */


.banner-overlay {
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: rgba(0, 0, 0, 0.6);
}


.privacy-section {
  background: #0b0b0b;
  padding: 90px 10%;
  color: white;
}

.privacy-container {
  max-width: 980px;
  margin: auto;
  background: #121212;
  border-radius: 18px;
  padding: 60px;
  box-shadow: 0 0 35px rgba(255, 165, 0, 0.12);
  animation: fadeUp 1s ease;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading */
.privacy-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 35px;
  color: orange;
}

/* Sub Headings */
.privacy-container h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #fff;
}

/* Paragraph */
.privacy-container p {
  font-size: 15px;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 18px;
}

/* Lists */
.privacy-container ul {
  margin: 15px 0 25px 25px;
}

.privacy-container ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 6%;
  }

  .privacy-container {
    padding: 30px;
  }

  .privacy-container h2 {
    font-size: 28px;
  }
}


/* ==============================
   Call Now Banner Dark Mode
============================== */

.call-banner-section {
  padding: 80px 10%;
  background: #111;
}

.call-banner {
  background: linear-gradient(135deg, #001a66, #0033cc);
  border-radius: 18px;
  padding: 35px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.call-banner::before,
.call-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.call-banner::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}

.call-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* Left Side */
.call-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.call-banner-left i {
  font-size: 42px;
  color: orange;
}

.call-banner-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Button */
.call-btn {
  padding: 14px 34px;
  background: orange;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 2;
}

.call-btn:hover {
  background: #ff9900;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
  .call-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .call-banner-left {
    flex-direction: column;
  }

  .call-banner-left h2 {
    font-size: 22px;
  }
}