html {
  scroll-behavior: smooth;
}


/* ===== Max Width Container ===== */
.container-1600 {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ===== Topbar Style ===== */
/* ===== Topbar Styling ===== */
.topbar {
  background-color: #ff6f00;
  font-size: 14px;
}

.blink {
  animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
  to { visibility: hidden; }
}

.missed-call {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Optional spacing fix for small screens */
@media (max-width: 576px) {
  .topbar {
    text-align: center;
  }

  .topbar a {
    margin-left: 8px;
    margin-right: 8px;
  }
}

#google_translate_element select {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.goog-te-gadget {
  color: white !important;
  font-family: inherit !important;
}



/* === Logo === */
.news-logo {
  height: 65px;
}

/* === Container === */
.container-1600 {
  max-width: 1600px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* === Mobile Toggle Button === */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px 10px;
  display: block;
}

/* ✅ Hamburger Icon (Black) */
.navbar-toggler-icon {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* === Mobile Nav Links === */
#mobileNav .nav-link {
  font-weight: 600;
  color: #222 !important;
  border-bottom: 1px solid #ddd;
  padding: 10px 5px;
}






/* ===== Hero Section ===== */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 6px #000;
  padding: 0 15px;
}

/* ===== Dushprachar Section ===== */
.dushprachar-section {
  background-color: #f9f5f0;
}

.dushprachar-section .section-title h2 {
  color: #c62828;
  font-size: 2.2rem;
}

.dushprachar-section .section-title p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

.dushprachar-section .border-warning {
  border-color: #ff6f00 !important; /* Bhagwa border */
}

.dushprachar-section .text-warning {
  color: #ff6f00 !important;
}

.dushprachar-section p {
  line-height: 1.6;
}

/* ===== YouTube Series Section ===== */
.youtube-series-section {
  background-color: #fff7e6;
}

.youtube-series-section .card {
  transition: transform 0.3s ease;
}

.youtube-series-section .card:hover {
  transform: translateY(-5px);
}

.youtube-series-section .card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.youtube-series-section {
  background-color: #fff7e6;
}

.youtube-series-section .card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.youtube-series-section .card:hover {
  transform: translateY(-5px);
}



/* ===== VIP Section ===== */
.vip-section {
  background-color: #fef8f0;
}

.vip-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6f00;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.vip-section .card {
  background: #fff;
  border-radius: 12px;
}
.vip-section blockquote {
  font-style: italic;
  color: #444;
  margin-top: 10px;
}

.vip-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6f00;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== FAQ (No JS) Styling ===== */
.faq-box {
  border: 1px solid #ffcc80;
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #fff3e0;
  color: #bf360c;
  font-size: 1rem;
  position: relative;
}

.faq-question .icon {
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Checkbox toggle logic */
.faq-box input:checked ~ .faq-answer {
  max-height: 1000px;
}

.faq-box input:checked ~ .faq-question .icon {
  transform: rotate(45deg); /* '+' becomes '×' */
}


/* ===== Contact Form Styling ===== */
form label {
  font-weight: 600;
  color: #333;
}

form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}

form .btn-warning {
  background-color: #ff6f00;
  border: none;
}

form .btn-warning:hover {
  background-color: #e65100;
}


.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}

.footer-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* ✅ WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 12px 14px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  text-decoration: none;
}



