/* ==========================================================================
   BODY REVIVAL — OFFICIAL BRAND STYLESHEET (bodyrevival.in brand styling)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2e5b47;
  --primary-dark: #1d392d;
  --primary-gradient-start: #308a56;
  --primary-gradient-end: #005d3f;
  --brand-yellow: #e5bd3a;
  --brand-dark: #1f2836;
  --brand-black: #010200;
  --text-dark: #111111;
  --bg-page: #f3f5f2;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 600;
  font-family: "Rajdhani", "Noto Sans Devanagari", sans-serif !important;
  color: #000;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 180%;
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
  outline: none !important;
}

a:hover, a:focus {
  text-decoration: none;
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.navbar-brand {
  padding: 0 !important;
}

.navbar-brand img {
  max-height: 65px;
}

.topnav1 {
  background-color: #fff;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topnav1 .navbar {
  padding: 10px 0;
}

.topnav1 .navbar .nav-item {
  font-size: 18px;
  font-weight: 600;
}

.topnav1 .navbar .nav-item.active .nav-link, 
.topnav1 .navbar .nav-item.current .nav-link,
.topnav1 .navbar .nav-link:hover {
  color: var(--primary) !important;
}

@media (min-width: 768px) {
  .topnav1 .navbar .nav-item.active .nav-link::after, 
  .topnav1 .navbar .nav-item.current .nav-link::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 80%;
    padding-top: 5px;
    border-bottom: 2px solid var(--primary);
  }
  .topnav1 .navbar-expand-lg .navbar-nav .nav-link {
    padding: 1.1rem 0.8rem;
    font-weight: 600;
    font-size: 18px;
  }
}

.nav-cta-btn {
  background-color: var(--primary);
  color: #fff !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 8px 20px !important;
  margin-left: 10px;
  font-size: 15px !important;
  box-shadow: 0 4px 12px rgba(46, 91, 71, 0.3);
}

.nav-cta-btn:hover {
  background-color: var(--primary-dark);
  color: #fff !important;
}

/* Language Switcher */
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: #f0f4f2;
  border: 1.5px solid #2e5b47;
  border-radius: 20px;
  padding: 2px 4px;
  margin-left: 10px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Fast Track 15-Min Response Badge */
.fast-track-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3cd;
  color: #856404;
  border: 1.5px solid #ffeeba;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fast-track-badge i {
  color: #d39e00;
  animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Headings */
.heading {
  margin-bottom: 30px;
}

.heading h2 {
  font-size: 38px;
  line-height: 140%;
  padding: 0;
  margin: 0;
  font-weight: 700;
  font-family: "Rajdhani", "Noto Sans Devanagari", sans-serif;
  color: #111;
}

.heading h2 b, .heading h2 strong, .heading h2 span {
  font-weight: 700;
  color: var(--primary);
}

.heading p {
  font-size: 16px;
  opacity: 0.85;
  margin-top: 8px;
}

/* Yellow Trust Banner */
.banner {
  background-color: var(--brand-yellow);
  padding: 12px 10px;
  color: #222;
  line-height: 150%;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}

.banner img {
  margin-right: 12px;
  width: 28px;
  border-radius: 0;
}

.banner table {
  margin: auto;
}

@media (max-width: 768px) {
  .banner {
    font-size: 13px;
    padding: 12px 0;
  }
  .banner img {
    width: 16px;
    margin-right: 4px;
  }
  .banner .col {
    padding: 0 4px;
  }
}

/* Green Banner Strips */
.banner-strip {
  background-color: var(--primary);
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 700;
}

.banner-strip img {
  width: 36px;
  margin-right: 10px;
  border-radius: 0;
}

@media (max-width: 767px) {
  .banner-strip {
    font-size: 22px;
    padding: 20px 12px;
  }
  .banner-strip img {
    width: 24px;
  }
}

/* List with check icons */
.ul-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul-list li {
  background: transparent url(../images/img-tick-2.png) scroll no-repeat left 8px;
  background-size: 16px auto;
  padding: 6px 0 6px 28px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/* Section Padding */
section {
  padding: 50px 0;
  overflow: hidden;
}

/* Video Grid Section */
.grid-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px 40px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.grid-item iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Testimonials / Patient Experiences 2 */
.testimonial2 .col-sm-4 {
  margin-bottom: 30px;
}

.testimonial2 .box {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.12);
  padding: 24px;
  text-align: center;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial2 .box .category {
  font-weight: 700;
  background-color: var(--primary);
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.testimonial2 .box h3 {
  font-weight: 700;
  margin: 14px 0 4px;
  padding: 0;
  text-transform: uppercase;
  font-size: 20px;
}

.testimonial2 .box .slogan {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.testimonial2 .box p {
  line-height: 150%;
  font-size: 15px;
  color: #444;
  text-align: center;
}

.testimonial2 .wrapimg img {
  border-radius: 50%;
  max-width: 110px;
  margin: 0 auto;
  border: 3px solid var(--primary);
}

.btn-gray {
  background-color: #838488;
  color: #fff !important;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 30px;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 10px;
}

.btn-gray:hover {
  background-color: var(--primary);
  color: #fff !important;
}

/* CTA Strip (Doctor + Helpline) */
.cta {
  background-color: var(--brand-dark);
  color: #fff;
  overflow: hidden;
  padding: 30px 0;
}

.cta .left-bg {
  background: transparent url(../images/img-leaf-left.png) scroll no-repeat left center;
}

.cta .right-bg {
  background: transparent url(../images/img-leaf-right.png) scroll no-repeat right bottom;
}

.cta .content {
  text-align: center;
  width: 100%;
}

.cta h2 {
  padding: 0;
  margin: 0 0 14px 0;
  font-weight: 600;
  line-height: 120%;
  font-size: 28px;
}

.cta .phone1 a {
  font-size: 42px;
  color: #ddca40;
  font-weight: 700;
}

.cta .phone1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 20px;
  }
  .cta .phone1 a {
    font-size: 28px;
  }
}

/* Types of Cancer (Black Section) */
.types-of {
  background-color: var(--brand-black);
  text-align: center;
  padding: 60px 0;
}

.types-of .heading h2 {
  color: #fff;
  font-size: 44px;
  margin-bottom: 20px;
}

.types-of .col {
  margin-bottom: 24px;
}

.types-of span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: block;
  border-radius: 8px;
  margin: 6px;
  padding: 14px 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.types-of span:hover {
  background: var(--primary);
  border-color: #55c595;
  transform: translateY(-4px);
}

.types-of span img {
  border-radius: 0;
  margin-bottom: 10px;
  height: 60px;
  object-fit: contain;
}

.types-of span h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Caregiver & Family Helper Box */
.caregiver-box {
  background: linear-gradient(135deg, #ebf5ee 0%, #edf4ef 100%);
  border: 1.5px solid #2e5b47;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.caregiver-box .icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.caregiver-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--primary);
}

.caregiver-box p {
  font-size: 15px;
  margin: 0;
  color: #333;
}

/* Visual Report Checklist Helper */
.report-checklist-helper {
  background: #ffffff;
  border: 1.5px solid #d2d7de;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.report-checklist-helper h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  border-bottom: 2px solid #e5bd3a;
  padding-bottom: 6px;
}

.report-item-tag {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: #f8faf8;
  border: 1px solid #e1ebe4;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14.5px;
  font-weight: 600;
}

.report-item-tag i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 16px;
}

/* Second Opinion Banner */
.second-opinion-banner {
  background: linear-gradient(90deg, #1f2836 0%, #2e5b47 100%);
  color: #fff;
  border-radius: 10px;
  padding: 24px 30px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.second-opinion-banner h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ddca40;
}

.second-opinion-banner p {
  margin: 0;
  font-size: 16px;
  color: #e6eee9;
}

/* Research & Documentation Cards */
.doc-box {
  background: #fff;
  border: 1px solid #d2d7de;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.doc-box strong {
  font-size: 18px;
  color: var(--primary);
  display: block;
}

.doc-box span {
  font-size: 14px;
  color: #666;
}

/* Contact / Consultation Form Section */
footer {
  padding: 40px 0 0 0;
  line-height: 160%;
  font-size: 16px;
  background-color: #f3f5f2;
}

.contact-form {
  background-color: #cbe228;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #d2d7de;
  border-radius: 10px;
}

.contact-form h2 {
  line-height: 120%;
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 14px;
}

.contact-form .form-control {
  background-color: #fff;
  border: 1px solid #ddd;
  min-height: 46px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 91, 71, 0.2);
}

.btn-success, .sysSubmitBtn {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 30px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(46, 91, 71, 0.3);
}

.btn-success:hover, .sysSubmitBtn:hover {
  background-color: var(--primary-dark) !important;
}

footer .box {
  border: 1px solid #d2d7de;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

footer .box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

footer .phone1 a {
  font-size: 34px;
  color: var(--primary);
  font-weight: 700;
}

footer .social-footer a {
  background-color: #666;
  display: inline-block;
  margin: 0 4px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
}

footer .social-footer a:hover {
  background-color: var(--primary);
}

footer .credit {
  border-top: 2px solid rgba(53, 61, 73, 0.2);
  margin-top: 30px;
  padding: 20px 0;
  font-size: 15px;
  color: #555;
}

/* Floating WhatsApp and Sticky Bar */
.social-icon.whatsapp {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1001;
}

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 16px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
}

.sticky-cta-bar .inner {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .sticky-cta-bar {
    display: block;
  }
}
