@import url('https://fonts.googleapis.com/css2?family=Merriweather:opsz,wght@18..144,300..900&family=Rubik:wght@300..900&display=swap');

body,
html {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

:root {
  --theme-primary-font: "Rubik", serif;
  --theme-title-font: "Merriweather", serif;

  /* Text & Accent */
  --theme-text-color: #3e3e3e;
  --theme-book-gold-color: #d4af37;
  --theme-book-dark-gold-color: #c28100;
  --theme-blue-green-color: #067489;
  --theme-blue-green-dark-color: #0b1e86;
  --theme-secondary-color: #e0ca98;
  --theme-bg-color: #f7f0e1;
  --theme-muted-silver-color: #9aa8b0;

  /* Light & Neutral */
  --theme-warm-paper-color: #f6f1e9;
  --theme-ink-color: #12202a;

  /* Your Backgrounds */
  --theme-background-color: #f6f3eb;

  /* warm gradient helpers (refined, lighter version) */
  --warm-0: rgba(255, 252, 245, 0.97);
  /* bright highlight */
  --warm-1: rgba(250, 240, 225, 0.90);
  /* warm soft cream */
  --warm-2: rgba(240, 225, 200, 0.80);
  /* gentle beige-gold */
  --warm-3: rgba(225, 205, 175, 0.65);
  /* soft warm tan */
  --warm-4: rgba(210, 190, 165, 0.50);
  /* mild shadow beige */
  --warm-5: rgba(195, 175, 155, 0.40);
  /* soft neutral depth (lighter than before) */
  --warm-6: rgba(180, 165, 145, 0.28);
  /* very soft grounding – no dark brown */

  /* mandala overlay opacity */
  --mandala-opacity: 0.07;
  /* scale 0.02 - 0.12 depending on need */
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(238, 122, 122, 0);
}

body {
  font-family: var(--theme-primary-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
  text-align: left;
  /* background-color: var(--theme-background-color); */
  font-weight: 400;
  color: var(--theme-text-color);
  overflow-x: hidden;
}

p {
  font-family: var(--theme-primary-font);
  line-height: 23px;
  padding: 10px 0;
}

/*--------------------
TYPOGRAPHY
-----------------*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-title-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0px;
}

.h1,
h1 {
  font-size: 55px;
}

.h2,
h2 {
  font-size: 32px;
}

.h3,
h3 {
  font-size: 23px;
}

.h4,
h4 {
  font-size: 19px;
}

.h5,
h5 {
  font-size: 18px;
}

.h6,
h6 {
  font-size: 16px;
}

.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--theme-muted-silver-color);
}

a {
  /* color: var(--theme-primary-color); */
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  /* color: var(--theme-secondary-color); */
  outline: none;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:focus,
a:visited {
  outline: none;
}

ul,
ol {
  margin-bottom: 10px;
  list-style-type: none;
  padding-left: 0px;
}

section {
  overflow: hidden;
}

/*-------------------
BUTTONS STYLE
----------------=----*/
.btn {
  font-weight: 600;
  position: relative;
  padding: 14px 23px;
  border-radius: 5px;
  /* font-size: 15px; */
  font-family: var(--theme-primary-font);
  border: 1px solid transparent;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}

.btn:focus {
  box-shadow: none !important;
}

.btn-main {
  position: relative;
  color: #fff;
  font-weight: 500;
  border-color: var(--theme-muted-silver-color);
  background: linear-gradient(135deg,
      #067489 0%,
      #0b1e86 35%,
      #2b3189 60%,
      #0b1e86 78%,
      #067489 100%);
  overflow: hidden;
  z-index: 1;
}

.btn-main:hover {
  color: #fff !important;
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #0b1e86 0%,
      #067489 35%,
      #067489 60%,
      #0b1e86 78%,
      #2b3189 100%);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: -1;
}

.btn-main:hover::before {
  opacity: 1;
}

.btn-main-2 {
  border-color: var(--theme-primary-color);
  color: #fff;
  background: var(--theme-primary-color);
}

.btn-main-2:hover {
  background: var(--theme-primary-color);
  color: #fff;
  border-color: var(--theme-primary-color);
}

.btn-main-tp {
  border-color: var(--theme-secondary-color);
  background: transparent;
}

.btn-main-tp:hover {
  background: var(--theme-primary-color);
  color: #fff;
  border-color: var(--theme-primary-color);
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.form-control {
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
}

/*-------------------
Rotated Linear Gradient (Light → Dark → Light)
----------------=----*/
.section-odd {
  background:
    radial-gradient(circle at 60% 40%,
      var(--warm-0) 0%,
      var(--warm-1) 25%,
      var(--warm-3) 55%,
      var(--warm-5) 85%),
    linear-gradient(45deg,
      var(--warm-1) 0%,
      var(--warm-4) 40%,
      var(--warm-6) 75%,
      var(--warm-2) 100%);
  background-blend-mode: soft-light, overlay;
}

/* Rotated Reverse Gradient (Dark → Light → Dark) */
.section-even {
  background:
    radial-gradient(circle at 35% 55%,
      var(--warm-3) 0%,
      var(--warm-5) 40%,
      var(--warm-2) 75%,
      var(--warm-4) 100%),
    linear-gradient(225deg,
      var(--warm-6) 0%,
      var(--warm-3) 30%,
      var(--warm-0) 65%,
      var(--warm-4) 100%);
  background-blend-mode: overlay, soft-light;
}

.section-odd,
.section-even {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* ensures rotation doesn’t spill out */
}

.with-mandala::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../mandala.svg') no-repeat center;
  /* background-size: 480px; */
  /* adjust size here */
  background-position: center center;
  opacity: 0.30;
  /* soften */
  animation: mandala-rotate 120s linear infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  /* mandala is above gradient but under content */
}

.with-mandala-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../mandala1.svg') no-repeat center;
  background-position: center center;
  /* background-size: 480px; */
  /* adjust size here */
  opacity: 0.19;
  /* soften */
  animation: mandala-rotate 370s linear infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  /* mandala is above gradient but under content */
}

.with-mandala-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../mandala2.svg') no-repeat center;
  background-position: center center;
  /* background-size: 480px; */
  /* adjust size here */
  opacity: 0.09;
  /* soften */
  animation: mandala-rotate 370s linear infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  /* mandala is above gradient but under content */
}

.with-mandala-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../mandala3.svg') no-repeat center;
  background-position: center center;
  /* background-size: 480px; */
  /* adjust size here */
  opacity: 0.09;
  /* soften */
  animation: mandala-rotate 370s linear infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  /* mandala is above gradient but under content */
}

.with-mandala-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../mandala4.svg') no-repeat center;
  background-position: center center;
  /* background-size: 480px; */
  /* adjust size here */
  opacity: 0.19;
  /* soften */
  animation: mandala-rotate 370s linear infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  /* mandala is above gradient but under content */
}

@keyframes mandala-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Gradient Text Will be Removed */

.text-gradient-main {
  background: linear-gradient(90deg,
      #f5c77a 0%,
      /* destiny gold */
      #fff1c1 30%,
      /* inner light */
      #cfe9e6 55%,
      /* clarity */
      #6bbbc1 75%,
      /* freewill teal */
      #2f6f7a 100%
      /* direction */
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-cosmic {
  background: linear-gradient(90deg,
      #d4af37 0%,
      #9ecbd0 40%,
      #4b8f9a 70%,
      #1e4f63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-title,
.text-gradient-dark-main {
  background: linear-gradient(90deg,
      #120b2e 0%,
      /* deep cosmic violet */
      #1c1b4a 30%,
      /* indigo blue */
      #243b5a 55%,
      /* deep blue */
      #2f6f7a 75%,
      /* muted teal */
      #1e4f63 100%
      /* dark teal */
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Gradient Text Will be Removed */
.text-gradient-dark-glow {
  background: linear-gradient(90deg,
      #120b2e 0%,
      #1c1b4a 35%,
      #6e8fa3 50%,
      /* subtle inner light */
      #2f6f7a 65%,
      #1e4f63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-dark-main,
.text-gradient-dark-cosmic,
.text-gradient-dark-glow {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

/*-------------------
 01 Header CSS
----------------=----*/
/*=======================
Header TopBar
============================*/
.header-contact li,
.header-socials li {
  float: left;
}

.header-socials {
  display: inline-block;
  vertical-align: middle;
}

.header-socials li {
  padding: 0px 5px;
  /* font-size: 12px; */
}

.header-socials li a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  padding-top: 7px;
}

/*-------------------
MENU
----------------------*/
.book-logo {
  width: 253px;
}

.site-navigation {
  padding: 5px 0px;
}

.navbar {
  padding: 0px;
}

.navbar-nav .nav-link {
  padding: 5px 12px !important;
  margin: 0 3px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: .91em;
  background-color: var(--theme-bg-color);
  border: 1px solid var(--theme-bg-color);
  /* background-color: rgba(255, 255, 255, 0.4); */
  border-radius: 12px;
}

.navbar-nav .nav-link:hover {
  color: var(--theme-book-gold-color);
  background-color: white;
  border: 1px solid var(--theme-secondary-color);
}

/* .navbar-nav .nav-link i {
  margin-left: 5px;
} */

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  content: "";
  vertical-align: middle;
  background: no-repeat 50%;
  background-size: 100% 100%;
}

/*-------------------
DROPDOWN MENU
----------------------*/
.dropdown-menu.show {
  -webkit-animation: .2s forwards b;
  animation: .2s forwards b;
}

.dropdown-item {
  font-weight: 500;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: background-color .1s;
  text-transform: capitalize;
  border-bottom: 1px solid #eee;
}

.dropdown-item:last-child {
  border-color: transparent;
}

.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: var(--theme-primary-color);
}

.dropdown-toggle::after {
  display: none;
}

.nav-item.dropdown .dropdown-menu {
  transition: all 300ms ease;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  border: 0px;
  padding: 0px;
  position: absolute;
  border-top: 2px solid var(--theme-primary-color);
  min-width: 220px;
}

.btn-small {
  padding: 11px 24px;
}

.btn-small i {
  margin-right: 5px;
}

.header-right-info a i {
  /* font-size: 18px; */
}

.main_menu {
  background: #F8F8F8;
}

/* Sticky Header */
.menu_fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
}

.header-white {
  background: #fff;
}

/*-------------------
BANNER SECTIONS
----------------------*/
.herobanner {
  background-image: url('../images/banner/destiny-and-freewill-herobanner.jpg');
  background-size: cover;
  background-position: left bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.herocontent {
  position: relative;
  min-height: 600px;
}

.herocontent h2 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 420px;
}

.herocontent img {
  position: absolute;
  top: 20px;
  right: 20px;
  animation: cinematicFloat 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  will-change: transform;
}

/* Floating Animations */
@keyframes cinematicFloat {
  0% {
    transform: translateY(10px);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-21px);
  }

  75% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.banner li {
  padding: 10px 0;
}

.banner b {
  color: #243b5a;
  font-weight: 500;
}

/*-------------------
Chapters SECTIONS
----------------------*/
.chapter-item h4 {
  color: var(--theme-blue-green-color);
  border-bottom: 1px solid var(--theme-blue-green-color);
}

/* ====================
Topic Items
======================*/
/* .book-preview {
  background: #413E65;
} */
.topic-master {
  display: flex;
  justify-items: center;
  align-items: stretch;
  gap: 28px;
  flex: 1;
}

.topic-item {
  position: relative;
  padding: 25px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 9px;
}

.topic-item .icon-box {
  width: 50px;
  height: 50px;
  text-align: center;
  background: var(--theme-secondary-color);
  color: #fff;
  border-radius: 100%;
  padding-top: 15px;
  overflow: hidden;
  position: absolute;
}

.topic-item .topic-content {
  padding-left: 80px;
}

.topic-item .topic-content h4 {
  margin-bottom: 10px;
}

/* ================
Features
================*/
.feature-master {
  display: flex;
  justify-items: center;
  align-items: stretch;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.feature-style-2 {
  text-align: center;
  transition: .4s;
  background: #fff;
  padding: 23px;
  border-radius: 8px;
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
  width: 47%;
}

.feature-style-2 i {
  color: var(--theme-secondary-color);
  transition: .4s ease;
}

.feature-style-2 h4 {
  margin: 10px 0px 0px 0px;
  color: var(--theme-blue-green-color);
}

.feature-style-2 p {
  margin-bottom: 0px;
}

.feature-inner {
  background: #fff;
  padding: 25px 20px;
  position: relative;
  border-radius: 5px;
}

/* ====================
Buy Now
======================*/

.pricing {
  margin-bottom: 3rem;
}

.countryBook {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.tableHeaders,
.buyIcons {
  padding: 15px 0;
}

.tableHeaders {
  color: #fff;
  padding: 10px 0;
  background-color: var(--theme-blue-green-dark-color);
}

.tableHeaders:nth-child(3) {
  color: #fff;
}

.flagsAndDesc img {
  padding-left: 10px;
}

.pricing__title {
  font-size: 28px;
  color: #fff;
}

tr.countryRow {
  padding: 15px 0;
  text-align: center;
  /* border-top: 1px solid #eff0f7; */
}

/* / country buy button css / */
.countryBuyButton {
  padding: 3px 25px !important;
  /* / border-radius:25px !important; /
  / line-height:0 !important; / */
}

.flagsAndDesc {
  text-align: left;
}

.pricing-background {
  background-color: var(--theme-background-color);
}

/* .shopping-bag {
  filter: invert(100%);
} */

.heading-title {
  color: var(--theme-secondary-color);
}

.buynow-heading,
.pricing__title {
  margin-bottom: 1rem;
  ;
}

.bg-container {
  background: #111A23;
  padding: 25px 50px;
  border-radius: 8px;
  position: relative;
}

.buynow-india h4 {
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.pricing__table {
  width: 100%;
}

.pricing__table td {
  border: 1px solid rgba(119, 48, 0, 0.3);
}

/* ====================
Scroll To Top
======================*/
.fixed-btm-top {
  position: fixed;
  bottom: 23px;
  right: 23px;
  border-radius: 23px;
  background-color: var(--theme-book-gold-color);
}

.fixed-btm-top .scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 37px;
  background: var(--theme-primary-color);
  color: #fff;
  width: 37px;
  border-radius: 100%;
  /* padding-top: 14px; */
  opacity: 0;
}

.fixed-btm-top i {
  font-size: 23px;
}


.scroll-to-top.reveal {
  opacity: 1;
  visibility: visible;
}

.copyright {
  padding: 20px;
}

/* .navbar {
  width: 90%;
} */

/* ====================
Accordion
======================*/
.navHeaders {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.accordion-button {
  /* background-color: var(--warm-3); */
  border: 1px solid var(--warm-0);
}

.accordion-button:not(.collapsed) {
  background-color: var(--warm-1);
  border: 1px solid var(--warm-0);
}

/* ====================
Testimonial
======================*/
.review-item {
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 37px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: var(--theme-background-color);
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

.review-item .client-img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.review-item .client-img img {
  border-radius: 100%;
}

.review-item h4 {
  margin-top: 15px;
}

.review-item p {
  /* color: #222; */
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0px 0px;
}

.review-item .client-desc {
  margin-top: 25px;
}

.review-item .rating i {
  font-size: 14px;
  color: #f2b827;
  opacity: 1;
}

.review-item .rating i.not-star {
  font-size: 14px;
  color: #6d6d6d;
  opacity: .5;
}

.testimonials-slides .owl-item {
  opacity: .5;
}

.testimonials-slides .owl-item.center {
  opacity: 1;
}

.testimonials-slides .owl-item.center .review-item {
  border: 1px solid var(--theme-secondary-color);
}

/* accordion */
#journey .accordion {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 23px;
}

#journey .accordion-item {
  width: 48%;
}

#journey .accordion-button:not(.collapsed)::after,
#journey .accordion-button::after {
  display: none;
}

/* Other Books */
.others-book {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 23px;
  flex-wrap: wrap;
}

.books {
  width: 48%;
}

.books img {
  max-width: 100%;
}

.books h2 {
  padding: 10px 0;
}

.books .buynow-btn .btn {
  padding: 10px;
}