:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5b214af *//* ===============================
   RAJESH AUTO CARE – PREMIUM CSS
   Modern UI + Animation + SEO Safe
================================ */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 950px;
  margin: auto;
  padding: 28px 20px;
  animation: fadeUp 0.8s ease;
}

/* Headings */
h1 {
  font-size: 34px;
  font-weight: 700;
  color: #0b3d91;
  margin-bottom: 10px;
  position: relative;
  animation: slideDown 0.7s ease;
}

h2 {
  font-size: 26px;
  color: #0b3d91;
  margin-top: 35px;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff6a00;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

h3 {
  color: #222;
  font-size: 19px;
  margin-bottom: 6px;
}

/* Paragraph */
p {
  font-size: 15.8px;
  color: #444;
}

/* Lists */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  transition: all 0.25s ease;
}

ul li:hover {
  transform: translateX(4px);
  color: #0b3d91;
}

/* Highlight Box */
.highlight {
  background: linear-gradient(135deg, #eef2ff, #f8faff);
  padding: 18px;
  border-left: 5px solid #0b3d91;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(11, 61, 145, 0.08);
  margin: 28px 0;
  transition: 0.3s ease;
}

.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 61, 145, 0.15);
}

/* CTA Button */
.cta {
  background: linear-gradient(135deg, #0b3d91, #1a5cff);
  color: #fff;
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  margin: 32px 0;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(11, 61, 145, 0.25);
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.35);
}

.cta a {
  color: #fff;
  text-decoration: none;
}

/* FAQ Cards */
.faq h3 {
  background: #f5f7ff;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq h3:hover {
  background: #e9edff;
  transform: translateX(3px);
}

.faq p {
  padding: 6px 4px 14px 4px;
}

/* Hashtags */
.hashtags {
  margin-top: 35px;
  padding: 14px;
  background: #f7f9ff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: #0b3d91;
  font-weight: 600;
}

/* Links */
a {
  color: #0b3d91;
  font-weight: 600;
}

a:hover {
  color: #ff6a00;
}

/* Smooth Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal (optional class use karo) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  .container {
    padding: 20px 14px;
  }

  .cta {
    font-size: 16px;
    padding: 16px;
  }
}/* End custom CSS */