/* FONT IMPORT */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */
:root {
  --white: #fff;
  --black: #000;
  --primary: #FF05BF;
  --secondary: #333333;
  --wood-dark: #3d2516;
  --wood-light: #5d4037;
  --gold-main: #ffcc00;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: clip;
}

body {
  position: relative;
  background: #F3F5ED;
  overflow-x: clip;
  height: 100%;
  font-family: "Comic Neue", cursive;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Boldonse", system-ui;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */
/* PRELOADER */
/* Browser Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #000;
  /* Video load hone se pehle black */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Top aur Bottom ke beech space */
  align-items: center;
  overflow: hidden;
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* TOP TEXT POSITION */
.top-section {
  position: relative;
  z-index: 10;
  margin-top: 60px;
  /* Image jaisa gap */
  text-align: center;
  width: 90%;
  opacity: 0;
  /* GSAP handles this */
}

.top-section h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  text-transform: uppercase;
}

.amber {
  color: #FF69B4;
}

/* Pink */
.emory {
  color: #4FAAFF;
}

/* Blue */

/* BOTTOM SECTION POSITION */
.bottom-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  margin-bottom: 1rem;
  /* Image jaisa gap niche se */
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  /* GSAP handles this */
}

.loading-label {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px #000;
}

/* THE WOOD BAR */
.bar-container {
  display: flex;
  align-items: center;
  width: 90%;
  gap: 15px;
}

.wood-frame {
  flex-grow: 1;
  height: 45px;
  background: #4e342e;
  /* Wood base color */
  /* CSS Wood Texture Grain */
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.2) 5px, rgba(0, 0, 0, 0.2) 10px);
  border: 5px solid #2b170a;
  /* Dark border like wood bark */
  border-radius: 30px;
  position: relative;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.6), 0 5px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 4px;
}

.gold-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to bottom, #ffeb3b, #ffc107, #ff8f00);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
  position: relative;
  transition: width 0.1s linear;
}

.percent-text {
  font-family: 'Fredoka One', cursive;
  color: white;
  font-size: 1.8rem;
  min-width: 80px;
  text-shadow: 2px 2px 4px #000;
}

.wait-msg {
  color: white;
  margin-top: 10px;
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px #000;
}

.heart {
  color: #ff4081;
}

html.is-preloading,
html.is-preloading body {
  overflow: hidden;
  height: 100%;
}

/* PRELOADER */
/* GLOBAL CSS */
.themeBtn {
  background-color: var(--primary);
  font-size: 1.25rem;
  color: #1F191B;
  font-weight: 400;
  display: inline-block;
  line-height: normal;
  font-family: 'Boldonse';
  padding: 1.135rem 2.5rem 1.135rem 2.5rem;
  border-radius: 50px;
  box-shadow: 6px 8px 0 0 #F3F5ED;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */
header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 2rem 0 2rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 220px;
}

.navbar-brand>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #111;
  padding: 60px 30px 60px 60px;
  transition: 0.6s ease;
  z-index: 999;
  display: flex;
  align-items: center;
}

/* ACTIVE STATE */
.sidebar.active {
  left: 0;
}

/* MENU LIST */
.sidebar ul {}

.sidebar ul li {
  margin-bottom: 20px;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 50px;
  transition: 0.3s;
  font-weight: bold;
}

.sidebar ul li a:hover {
  color: #f1c40f;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 7rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* HAMBURGER */
.menu-btn {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  text-align: end;
}

.menu-btn span {
  position: absolute;
  width: 70%;
  height: 3px;
  background: #000;
  left: unset;
  transition: 0.4s;
  right: 0;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 9px;
  width: 100%;
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-wrapper p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1E1F1F;
  text-transform: uppercase;
  margin: 0;
}

/* Menu Css End */
/* Main Banner Css Start */
.main-banner {
  background: url(../images/mainBnnr.webp)center/cover no-repeat;
  height: 1400px;
  padding: 28rem 0 6rem;
  overflow: hidden;
}

.top-border {
  border-bottom: 1px solid #fff;
  padding-bottom: 1.75rem;
}

.main-content h1 {
  font-size: 92px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3F5ED;
  letter-spacing: -2px;
  margin-top: 1.25rem;
}

.main-content h1 img {
  margin-top: -3.125rem;
}

.main-content p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F3F5ED;
  letter-spacing: -1px;
  margin: 0 0 1.25rem 0;
}

.form-inline a i {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #F3F5ED;
  color: var(--black);
  box-shadow: 4px 5px 0 0 #221C1E;
}

.mainbbottom {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
}

.cloud1 {
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.cloud4 {
  position: absolute;
  right: 0;
  top: 10rem;
}

.cloud3 {
  position: absolute;
  top: 9rem;
  right: 19%;
}

.cloud2 {
  position: absolute;
  left: 16%;
  top: 0;
  bottom: 35%;
  margin: auto;
}

.main-sub5 {
  position: absolute;
  left: -5rem;
  bottom: -5rem;
}

.main-sub1 {
  position: absolute;
  right: -5.5rem;
  bottom: -5.5rem;
}

.main-sub4 {
  position: absolute;
  left: 20%;
  bottom: -5rem;
}

.main-sub2 {
  position: absolute;
  right: 19%;
  bottom: -3.5rem;
}

.main-sub3 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -8.5rem;
}

/* Main Banner Css End */
/* About Sec Css Start */
.image-frame-container img {
  border-radius: 30px;
  border: 1px dashed var(--black);
  transition: 0.6s ease;
}

.image-frame-container {
  background-color: #DBC6FF;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 60px;
  margin: 2.5rem 0 2.75rem 0;
  overflow: hidden;
}

.subHead {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #1F191B;
  font-family: 'Comic Neue';
  margin: 0 0 1.25rem 0;
}

.mainHead {
  font-size: 56px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1F191B;
  letter-spacing: -2px;
  line-height: 1.5;
}

.about-content p {
  font-size: 1.5rem;
  color: #5F5B5A;
  line-height: 1.3;
  font-weight: bold;
  width: 86%;
  margin: 0 auto 3rem auto;
}

.about-content .themeBtn {
  position: relative;
  background-color: transparent;
  box-shadow: unset;
  width: fit-content;
  text-align: center;
  display: block;
  margin: 0 auto 0 auto;
  padding: 1rem 1rem 1rem 3.25rem;
  z-index: 1;
}

.about-content .themeBtn img {
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: auto;
  width: 15rem;
  height: 4rem;
}

/* About Sec Css End */
/* Choose Sec Css Start */
.card-coral {
  background-color: #E96D5B;
}

.card-beige {
  background-color: #F3F5ED;
}

.card-green {
  background-color: #90C76E;
}

.features-container {
  background-color: #DBC6FF;
  padding: 5rem 0 7rem 0;
}

.choose-top {
  text-align: center;
  margin: 0 0 4rem 0;
}

.choose-bottom {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -7rem;
}

.choosetop {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -3rem;
}

.book-promo-section {
  padding: 6rem 0 10rem 0;
  background-color: var(--white);
  border-top: 1px solid #fff;
}

.feature-card {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 60px;
  height: 100%;
  transition: 0.6s ease;
}

.feature-card h3 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1F191B;
  margin: 6.25rem 0 1rem 0;
  line-height: 1.5;
}

.feature-card p {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: #1F191B;
  line-height: 1.5;
}

.feature-card:hover {
  transform: scale(0.98);
}

/* Choose Sec Css End  */
/* Meet Sec Css Start */
.bg-background {
  background-color: #f5f6f1;
}

.cards-wrapper {
  padding: 40px;
}

.char-card {
  border-radius: 26px;
  position: relative;
}

.card-inner {
  height: 100%;
  border-radius: 23px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.char-name {
  position: absolute;
  bottom: 3rem;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  z-index: 2;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1F191B;
  letter-spacing: -1px;
  right: 0;
  background: var(--white);
  padding: 10px 0;
  width: fit-content;
}

/* Precision Overlap & Rotations */
.card-1 {
  transform: rotate(-12deg) translateY(-5px);
  margin-right: -25px;
  margin-left: -2rem;
}

.card-2 {
  transform: rotate(10deg) translateY(24px);
  z-index: 1;
  margin-right: -35px;
  z-index: 2;
}

.card-3 {
  transform: rotate(-4deg) translateY(0px);
  z-index: 2;
  margin-right: -35px;
}

.card-4 {
  transform: rotate(10deg) translateY(18px);
  z-index: 3;
}

.card-inner img {
  width: 100%;
  border: 2px solid #DBC6FF;
  border-radius: 60px;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--white);
}

.meet-top {
  text-align: center;
}

.meet-sec {
  padding: 12rem 0 15rem 0;
}

.meet-top h2 {
  margin-bottom: 1rem;
}

.meet-top .themeBtn {
  padding: 3rem;
}

/* Meet Sec Css End */
.book-promo-card {
  background-color: #F3F5ED;
  border-radius: 40px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* 3D Book Cover Styling */
.book-cover-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  perspective: 1200px;
}

.book-3d-wrapper {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(10deg) rotateZ(-4deg);
  transition: transform 0.4s ease;
}

.book-3d-wrapper:hover {
  transform: rotateY(-15deg) rotateX(5deg) rotateZ(-2deg);
}


/* Book Pages Thickness */
.book-3d-wrapper::before {
  top: 1.5%;
  bottom: 1.5%;
  right: -18px;
  width: 18px;
  background: black;
  transform-origin: left center;
  transform: rotateY(90deg);
  border-radius: 0 4px 4px 0;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Book Spine Hint */
.book-3d-wrapper::after {
  left: -2px;
  transform-origin: right center;
  transform: rotateY(-90deg);
  border-radius: 4px 0 0 4px;
}

/* Main Content Styling */
.description {
  font-size: 1.25rem;
  color: #4A4545;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: -1.5px;
  width: 90%;
}

.horizontal-divider {
  border-top: 1px dotted #b3b3b3;
  margin: 25px 0;
  width: 100%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #4A4545;
  font-weight: bold;
}

.feature-list .check-icon {
  margin-right: 12px;
  flex-shrink: 0;
}

/* Button Styling */
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #7b31ff, #5800ff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  letter-spacing: -0.02em;
  box-shadow: 0 5px 0 #3a097a, 0 10px 20px rgba(88, 0, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-buy-now:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(2px);
  box-shadow: 0 3px 0 #3a097a, 0 8px 15px rgba(88, 0, 255, 0.3);
}

.btn-buy-now:active {
  transform: translateY(5px);
  box-shadow: 0 0px 0 #3a097a, 0 4px 10px rgba(88, 0, 255, 0.2);
}

/* Right Column Details */
.book-details-wrapper {
  border-left: 1px dotted #b3b3b3;
  padding-left: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-item {
  padding: 16px 0;
  border-bottom: 1px dotted #b3b3b3;
}

.detail-item.no-border,
.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-item:first-child {
  padding-top: 0;
}

.detail-item .label {
  display: block;
  font-size: 1rem;
  color: #4A4545;
  font-weight: bold;
  margin-bottom: 6px;
}

.detail-item .value {
  font-size: 1rem;
  color: #1F191B;
  font-weight: 400;
  font-family: "Boldonse", system-ui;
}

.book-top {
  text-align: center;
  margin: 0 0 2.5rem 0;
}

.book-promo {
  background-color: #DBC6FF;
  padding: 5.25rem 0 8rem 0;
}

.booktop {
  position: absolute;
  right: 0;
  left: 0;
  top: -7rem;
  margin: auto;
}

.title {
  font-size: 22px;
  font-weight: 400;
  color: #1F191B;
  margin: 0.75rem 0 1rem 0;
}

.book-btn .themeBtn {
  z-index: 1;
  width: unset;
  padding: 0;
  text-align: start;
  padding: 13px 0 0 31px;
  color: var(--white);
}

.book-btn .themeBtn img {
  margin: unset;
  height: 66px;
  width: 200px;
}

/* Testimonials Sec Css Start */
.testimon-top {
  text-align: center;
  margin-bottom: 3rem;
}

.test-star li a {
  font-size: 1.25rem;
  color: #1F191B;
}

.test-star {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.test-wrapp h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1F191B;
  margin: 2rem 0 1rem 0;
}

.test-wrapp p {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: #4A4545;
  line-height: 1.5;
  width: 90%;
  margin: 0 0 3rem 0;
}

.test-wrapp h5 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #1F191B;
}

.test-wrapp h5 span {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4A4545;
  display: block;
  margin: 0.75rem 0 0 0;
  font-family: "Comic Neue", cursive;
}

.test-box {
  position: relative;
}

.test-flex {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0;
  left: 2rem;
  right: 1rem;
  top: 3rem;
  bottom: 3rem;
  justify-content: space-between;
}

.test-flex h4 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #F3F5ED;
}

.test-flex p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F3F5ED;
  letter-spacing: -1px;
  line-height: 1.3;
}

.test-flex h5 {
  font-size: 56px;
  font-weight: 400;
  color: #F3F5ED;
}

.testslider .swiper-button-next:after,
.testslider .swiper-button-prev:after {
  display: none;
}

.testslider .swiper-button-next,
.testslider .swiper-button-prev {
  bottom: 0;
  top: unset;
  width: 5rem;
}

.testslider {
  padding: 0 0 5rem 0;
}

.testslider .swiper-button-next img,
.testslider .swiper-button-prev img {
  height: 2rem;
  width: 3rem;
}

.testslider .swiper-button-next {
  left: 0;
}

.testslider .swiper-button-prev {
  left: 4.75rem;
}

.test-sec {
  background-color: #F3F5ED;
  padding: 6rem 0 9rem 0;
}

/* Testimonials Sec Css End */
/* Footer Sec Css Start */
.footer-section {
  position: relative;
  background: url(../images/footerbg.webp)center/cover no-repeat;
  padding: 2rem 0 30px;
  color: #ffffff;
  /* overflow: hidden; */
  margin-top: 12rem;
}

.bg-image {
  position: relative;
  z-index: 1;
}

/* Decorative Elements */
.decorative-sun {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80px;
  height: auto;
  z-index: -1;
  opacity: 0.9;
}

.decorative-plane {
  position: absolute;
  top: 10%;
  right: 0;
  transform: rotate(-15deg);
}

/* Subscribe Form */
.subscribe-wrapper {
  margin-bottom: 60px;
}

.subscribe-form {
  position: relative;
  max-width: 710px;
  margin: 0 auto;
}

.subscribe-form .form-control {
  background-color: #f8fdf4;
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  height: 60px;
  font-size: 14px;
  color: #333;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-form .form-control::placeholder {
  color: #666;
}

.subscribe-form .btn-subscribe {
  background-color: #ff00b3;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 15px 40px;
  height: 60px;
  font-weight: 800;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: 0 4px 15px rgba(255, 0, 179, 0.4);
  transition: all 0.3s ease;
}

.subscribe-form .btn-subscribe:hover {
  background-color: #e600a0;
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Navigation */
.footer-nav {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DBC6FF;
}

.footer-nav li a {
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
  color: #DBC6FF;
}

.footer-nav li a:hover {
  color: #ff00b3;
}

/* Footer Bottom */
.footer-bottom p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #DBC6FF;
}

/* Footer Sec Css End */
/* Marquee Sec Css Start */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5rem;
  overflow: hidden;
  padding: 2rem 0;
}

.marquee span {
  text-transform: uppercase;
  will-change: transform;
  animation: marquee 39s linear infinite;
  font-size: 301px;
  font-weight: 400;
  display: block;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  letter-spacing: -10.77px;
  font-family: "Boldonse", system-ui;
  color: rgb(243 245 237 / 20%);
}

.footertop {
  position: absolute;
  left: 0;
  right: 0;
  /* bottom: -2rem; */
  top: -13rem;
}

.subscribe-wrapper .themeBtn {
  flex-shrink: 0;
  border: unset;
  margin-left: 1rem;
}

.subscribe-wrapper h3,
.subscribe-wrapper h2 {
  color: #F3F5ED;
}

.subscribe-wrapper h3 {
  text-transform: capitalize;
}

.subscribe-wrapper h2 {
  margin-bottom: 2rem;
  font-size: 3.0935rem;
}

.choose-top .mainHead {
  text-transform: none;
}

.themeBtn:hover {
  color: var(--white);
  transform: scale(0.98);
}

.image-frame-container:hover img {
  transform: scale(1.03);
}

/* Marquee Sec Css End */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.auto-rotate {
  animation: rotate 3s linear infinite;
}

@keyframes autoScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.auto-scale {
  animation: autoScale 2s ease-in-out infinite;
}

section.main-banner.inner-banner {
  height: 1200px;
}

section.main-banner.inner-banner .main-content h1 {
  font-size: 73px;
  font-weight: 400;
}

section.main-banner.inner-banner .cloud2 {
  left: 13%;
  top: -6%;
}

.author-profile-section {
  padding: 80px 0;
  background-color: var(--white);
  border-top: 1px solid #ffff;
}

.text-content-col {
  /* padding-right: 30px; */
}

.author-intro-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  color: #1F191B;
  margin-bottom: 27px;
}

.author-body-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  color: #4A4A4A;
  margin-bottom: 0;
}

.image-content-col {
  position: relative;
}

.author-image-wrapper {
  position: relative;
  width: 100%;
}

.main-author-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 45px 45px 45px;
  /* Subtle depth */
}

.badge-container {
  position: absolute;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .author-profile-section {
    padding: 50px 0;
  }

  .text-content-col {
    padding-right: 15px;
    margin-bottom: 50px;
  }

  .corner-cutout-mask {
    width: 150px;
    height: 150px;
    border-bottom-right-radius: 40px;
  }

  .badge-container {
    width: 120px;
    height: 120px;
    transform: translate(-10px, -10px);
  }
}

@media (max-width: 575px) {
  .corner-cutout-mask {
    width: 120px;
    height: 120px;
    border-bottom-right-radius: 30px;
  }

  .badge-container {
    width: 100px;
    height: 100px;
    transform: translate(-5px, -5px);
  }

  .main-author-img {
    border-radius: 0 30px 30px 30px;
  }

  .author-intro-text {
    font-size: 1.05rem;
  }

  .author-body-text {
    font-size: 0.9rem;
  }
}

.inspirational-quote-section {
  padding: 2rem 0 9rem;
  background-color: var(--white);
}

.quote-banner-card {
  background-color: #6b14f8;
  border-radius: 20px;
  position: relative;
  padding: 50px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(107, 20, 248, 0.15);
  overflow: hidden;
}

.quote-banner-border {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}

.quote-banner-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-icon-badge {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-star-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fca311;
}

.badge-quote-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.quote-headline {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.5;
  margin: 0;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .quote-banner-card {
    padding: 75px 50px;
  }

  .quote-icon-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
  }
}

section.joinsect {
  padding: 13rem 0 5rem;
}

.joinwraps p {
  font-size: 24px;
  font-weight: bold;
  color: #1F191B;
  margin: 1rem 0;
}

.joinwraps {
  text-align: center;
}

.themeBtn.btng1 {
  background: #6411F3;
  color: #fff;
}

.themeBtn.btng2 {
  background: #fff;
  border: 1px solid #000;
}

.themeBtn.btng2:hover {
  color: var(--primary);
}

.btn-group.joinbtn {
  gap: 1rem;
}

.bookjoin1 {
  background: url(../images/joingbg11.png)center/cover no-repeat;
}

.app-navigation-section {
  padding: 5rem 0 2rem;
  display: flex;
  align-items: center;
  background: #F3F5ED;
}

.nav-card {
  border-radius: 16px;
  margin-bottom: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-card-hero {
  height: 600px;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 60%; */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.nav-card:not(.nav-card-hero) {
  height: 180px;
}

.nav-card-coral {
  background-color: #e4725c;
}

.nav-card-white {
  background-color: #ffffff;
}

.nav-card-green {
  background-color: #9bc574;
}

.nav-card-title {
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0;
  color: #151515;
  letter-spacing: -0.8px;
  transform: scaleY(1.05);
  z-index: 3;
  position: relative;
}

.title-light {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advanbook1 {
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  margin: auto;
}

section.meet-sec.meetbooks1 {
  padding-bottom: 9rem;
}

section.joinsect.bookjoin1 {
  padding: 13.5rem 0;
}

section.joinsect.bookjoin1 .themeBtn.btng2 {
  background: #DBC6FF;
}

p.parachar {
  font-size: 24px;
  font-weight: bold;
  color: #1F191B !important;
  margin-bottom: 1rem;
}

.characterwraps p {
  font-size: 24px;
  font-weight: bold;
  color: #5F5B5A;
  line-height: 1.5;
}

.characterwraps {
  padding-left: 5rem;
}

.characterwraps1 {
  padding-left: 0;
  padding-right: 5rem;
}

.contact-section {
  padding: 80px 0;
  background-color: #F2F3EC;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-wrapper {
  background-color: #DBC4FC;
  border-radius: 40px;
  padding: 50px 35px 35px;
}

.contact-header {
  margin-bottom: 35px;
}

.sub-title {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #1F191B;
  font-family: 'Comic Neue';
}

.main-title {
  font-size: 56px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
  font-family: 'Manrope', sans-serif;
  /* Creating a slightly bolder/blocky effect to match design */
  -webkit-text-stroke: 1px #1A1A1A;
  font-family: 'Boldonse';
}

.contact-form-box {
  background-color: #F2F3EC;
  border-radius: 30px;
  padding: 20px;
}

.image-wrapper {
  height: 100%;
}

.rounded-image {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.form-inner {
  padding: 10px 15px 10px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

.custom-form-group {
  margin-bottom: 16px;
}

.custom-label {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
  color: #1A1A1A;
  display: block;
  letter-spacing: 0.5px;
}

.custom-input {
  background-color: transparent;
  border: 1px dashed #A0A0A0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  box-shadow: none !important;
  outline: none;
  transition: border-color 0.3s ease;
  height: 44px;
}

.custom-input:focus {
  border-color: #611CFF;
  background-color: transparent;
}

.custom-input::placeholder {
  color: #888;
  font-weight: 400;
}

.custom-textarea {
  resize: none;
  padding-top: 10px;
}

.btn-submit {
  background-color: #611CFF;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 400;
  font-size: 20px;
  border: none;
  transition: background-color 0.3s ease;
  font-family: 'Boldonse';
}

.btn-submit:hover {
  background-color: #4A10D6;
  color: #fff;
}

@media (max-width: 991px) {
  .contact-wrapper {
    padding: 40px 20px 20px;
  }

  .main-title {
    font-size: 36px;
  }

  .rounded-image {
    min-height: 250px;
    margin-bottom: 20px;
  }
}



.book-promo-wrapper {
  padding: 60px 0;
  overflow-x: hidden
}

.book-card-main {
  background-color: #D1BEF5;
  border-radius: 24px;
  padding: 35px 20px 35px 30px;
  max-width: 93%;
  margin: 0 auto 40px auto;
  transition: all 0.3s ease
}

.card-blur-1 {
  filter: blur(1.5px);
  opacity: 0.85;
  transform: scale(0.96)
}

.card-blur-2 {
  filter: blur(3px);
  opacity: 0.6;
  transform: scale(0.92);
  margin-bottom: 0
}

.book-img-wrapper {
  position: relative;
  /* transform: rotate(-6deg); */
  left: 56px;
}

.book-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 6px;
  /* box-shadow: -12px 18px 30px rgba(0, 0, 0, 0.3); */
}

.book-info-col {
  padding-left: 15px;
  padding-right: 25px
}

.star-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px
}

.book-title {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px
}

.book-desc {
  font-size: 20px;
  font-weight: bold;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px
}

.dashed-divider-main {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  margin: 15px 0
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #222
}

.check-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px
}

.btn-buy {
  background-color: #8340F6;
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 12px;
  border: none;
  box-shadow: 0 4px 0px #5E26BD;
  cursor: pointer;
  outline: none
}

.book-meta-col {
  position: relative;
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.book-meta-col::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 5%;
  height: 90%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1)
}

.meta-item {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15)
}

.meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.meta-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: #555;
  margin-bottom: 3px
}

.meta-val {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #111
}


.blog-section {
  padding: 5rem 0;
}

.blog-card {
  background-color: #F3F5ED;
  border: 1px dashed #7a7a7a;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 20px;
}

.blog-card-img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 30px 30px 0 0;
}

.blog-card-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 20px;
  color: #1F191B;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.blog-meta .separator {
  margin: 0 8px;
  color: #7a7a7a;
}

.blog-title {
  font-size: 1.225rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.57;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Custom O character style based on the image */
.blog-title {
  /* Optional: If there's a specific font for the 'O' that has a dot inside, it would be applied here. Using standard Oswald as close match */
}

.character-img {
  border: 2px solid #DBC6FF;
  border-radius: 60px;
  overflow: hidden;
  background: var(--white);
}

.character-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.character-section .row+.row {
  margin-top: 2.5rem;
}


/* Revision Css Start */


.blog-image img {
  width: 100%;
}


.blog-details {
  background-color: var(--white);
}

.margin-top {
  margin-top: 3rem;
}

.blog-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: #5E5E5E;
  font-weight: 600;
}

/* Revision Css End */

.video-thriller-sec {
  padding: 80px 0;
  background-color: #fff;
  /* Aap apni marzi ka color de sakte hain */
  position: relative;
}

.video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 10px solid #fff;
  /* Frame look dene ke liye */
}

.video-box video {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}