* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= HEADER ================= */

.site-header {
  width: 100%;
  min-height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.header-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
/* 
.logo {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-top,
.logo-bottom {
  font-size: 32px;
}

.logo-icon {
  color: #ff1717;
  font-size: 25px;
  margin: 0 -2px;
  position: relative;
  top: -2px;
} */

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #ff1717;
}

/* ================= BUTTON ================= */

.header-btn {
  background: #ff1717;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 50px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #ffffff;
  color: #ff1717;
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 32px;
  height: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .header-container {
    padding: 0 25px;
  }

  .navbar {
    gap: 20px;
  }

  .navbar a {
    font-size: 12px;
  }

  .header-btn {
    padding: 14px 25px;
    font-size: 12px;
  }

  .logo-top,
  .logo-bottom {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 85px;
    position: relative;
  }

  .header-container {
    padding: 0 22px;
  }

  .menu-icon {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #3f4141;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
    z-index: 999;
  }

  .navbar a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-btn {
    display: none;
  }

  .menu-toggle:checked ~ .navbar {
    max-height: 400px;
  }

  .logo-top,
  .logo-bottom {
    font-size: 25px;
  }

  .logo-icon {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 75px;
  }

  .navbar {
    top: 75px;
  }

  .header-container {
    padding: 0 18px;
  }

  .logo-top,
  .logo-bottom {
    font-size: 22px;
  }

  .logo-icon {
    font-size: 18px;
  }
}



/* ================= HERO BANNER ================= */

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: url("../images/bannerbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* dark overlay for same screenshot look */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.25) 100%
  ); */
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 60px 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ================= LEFT CONTENT ================= */

.hero-content {
  width: 52%;
  color: #ffffff;
  padding-top: 35px;
}

.hero-small-text {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-author {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  margin-bottom: 6px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-title span {
  color: #ff1717;
  font-size: 0.75em;
  position: relative;
  top: -3px;
  margin: 0 -5px;
}

.hero-description {
  max-width: 580px;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 24px;
  color: #ffffff;
}

/* ================= BUTTONS ================= */

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 25px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-red {
  background: #ff1717;
  color: #ffffff;
}

.btn-red:hover {
  background: #ffffff;
  color: #ff1717;
}

.btn-white {
  background: #ffffff;
  color: #111111;
}

.btn-white:hover {
  background: #ff1717;
  color: #ffffff;
}

/* ================= RIGHT BOOK IMAGE ================= */

.hero-book {
  width: 48%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-book img {
  width: min(100%, 520px);
  display: block;
  transform: rotate(-13deg) translateY(35px);
  transform-origin: center;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.45));
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .hero-container {
    gap: 20px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-book img {
    width: min(100%, 460px);
  }
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: auto;
  }

  .hero-container {
    padding: 70px 30px 45px;
  }

  .hero-content {
    width: 55%;
    padding-top: 0;
  }

  .hero-book {
    width: 45%;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .hero-book img {
    transform: rotate(-10deg) translateY(20px);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 50px 0;
    min-height: auto;
    text-align:  center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.62);
  }

  .hero-container {
    flex-direction: column;
    padding: 55px 22px 45px;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-book {
    width: 100%;
    justify-content: center;
  }

  .hero-book img {
    width: min(82%, 360px);
    transform: rotate(-7deg) translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 45px 18px 38px;
  }

  .hero-title {
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero-description {
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 230px;
    min-height: 45px;
    font-size: 12px;
  }

  .hero-book img {
    width: min(88%, 300px);
  }
}



/* ================= SYNOPSIS SECTION ================= */

.synopsis-section {
  width: 100%;
  padding: 50px 10px 150px 10px;
  background: linear-gradient(
    to bottom,
    #f2f5f6 0%,
    #f2f5f6 73%,
    #ffffff 73%,
    #ffffff 100%
  );
  text-align: center;
}

.synopsis-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  font-size: 50px;
  line-height: 1.1;
  color: #070707;
  font-weight: 600;
  margin-bottom: 18px;
}

.synopsis-container p {
  max-width: 920px;
  margin: 0 auto 18px;
  color: #111111;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 400;
}

/* ================= EXTENDED SYNOPSIS BOX FIXED ================= */
@media(max-width: 1440px){
  .synopsis-section{
    padding: 100px 20px 80px 20px;
  }
  
}


.extended-box {
  width: 100%;
  max-width: 1020px;
  min-height: 310px;
  margin: 55px auto 0 auto ;
  position: relative;
  overflow: hidden;
  transform: translateY(50%);
  z-index: 5;

  background-image:
    url("../images/Video\ Section.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}
.extended-content {
  width: 100%;
  padding: 40px 25px;
  color: #ffffff;
  text-align: center;
}

.extended-content h3 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.extended-content p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 500;
}

.spoiler-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 28px;
  border: 2px solid #ff1717;
  border-radius: 40px;
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.spoiler-btn:hover {
  background: #ff1717;
  color: #ffffff;
}

.extended-content span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .extended-box {
    max-width: 100%;
    min-height: 230px;
    margin-top: 45px;
  }

  .extended-content {
    padding: 38px 20px;
  }

  .extended-content h3 {
    font-size: 30px;
  }

  .extended-content p {
    font-size: 14px;
  }

  .spoiler-btn {
    min-height: 40px;
    padding: 0 24px;
    font-size: 12px;
  }

  .extended-content span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .extended-box {
    min-height: 250px;
  }

  .extended-content h3 {
    font-size: 25px;
  }

  .extended-content p {
    font-size: 13px;
  }

  .spoiler-btn {
    width: 100%;
    max-width: 260px;
    min-height: 42px;
    font-size: 12px;
  }

  .extended-content span {
    font-size: 12px;
  }
}



/* ================= AUTHOR SECTION ================= */

.author-section {
  width: 100%;
  background: #ffffff;
  padding: 165px 20px 90px;
  position: relative;
}

.author-container {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 120px;
}

/* ================= AUTHOR IMAGE ================= */

.author-image-box {
  position: relative;
  width: 100%;
}

.author-image-box img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

/* ================= SOCIAL ICONS ================= */

.author-social {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  padding: 15px 0;
  background: #ffffff;
  border: 1px dashed #111111;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.author-social a {
  color: #111111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: 0.3s ease;
}

.author-social a:hover {
  color: #ff1717;
}

/* ================= AUTHOR CONTENT ================= */

.author-content {
  width: 100%;
}

.author-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.author-subtitle span {
  width: 22px;
  height: 1px;
  background: #111111;
  display: inline-block;
}

.author-content h2 {
  color: #050505;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
}

.author-content p {
  color: #222222;
  font-size: 14px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}

/* ================= AUTHOR LIST ================= */

.author-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.author-list li {
  position: relative;
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 25px;
  margin-bottom: 13px;
}

.author-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff1717;
  font-size: 16px;
  font-weight: 900;
}

/* ================= AUTHOR BUTTON ================= */

.author-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  background: #ff1717;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.author-btn:hover {
  background: #111111;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .author-container {
    max-width: 900px;
    grid-template-columns: 380px 1fr;
    gap: 80px;
  }

  .author-image-box img {
    height: 400px;
  }

  .author-list li {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .author-section {
    padding: 150px 25px 75px;
  }

  .author-container {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }

  .author-image-box {
    max-width: 420px;
    margin: 0 auto;
  }

  .author-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .author-subtitle {
    justify-content: center;
  }

  .author-list {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .author-section {
    padding: 140px 20px 65px;
  }

  .author-image-box img {
    height: 380px;
  }

  .author-social {
    right: 15px;
    width: 42px;
  }

  .author-content h2 {
    font-size: 38px;
  }

  .author-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .author-section {
    padding: 125px 16px 55px;
  }

  .author-image-box img {
    height: 330px;
  }

  .author-social {
    right: 12px;
    width: 40px;
    gap: 12px;
  }

  .author-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .author-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .author-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .author-list li {
    font-size: 14px;
    padding-left: 23px;
  }

  .author-btn {
    min-height: 42px;
    padding: 0 25px;
    font-size: 12px;
  }
}


/* ================= BUY BOOK SECTION ================= */

.buy-book-section {
  width: 100%;
  background: #ffffff;
  padding: 75px 20px 80px;
}

.buy-book-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* ================= HEADING ================= */

.buy-book-heading {
  margin-bottom: 38px;
}

.buy-book-heading h2 {
  color: #050505;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 12px;
}

.buy-book-heading p {
  color: #222222;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

/* ================= STORE CARDS ================= */

.book-store-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.store-card {
  width: 220px;
  min-height: 88px;
  background: #f0f2f4;
  border: 1px solid #aeb4ba;
  border-radius: 12px;
  text-decoration: none;
  color: black;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* hover shine effect */
.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  /* background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  ); */
  transition: 0.55s ease;
}

.store-card h3 {
  color: black;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.store-card span {
  color: #222222;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  transition: 0.3s ease;
}

/* ================= HOVER ================= */

.store-card:hover {
  transform: translateY(-8px);
  border-color: #ff1717;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.13);
}

.store-card:hover::before {
  left: 130%;
}

.store-card:hover h3 {
  color: #ff1717;
}

.store-card:hover span {
  color: #111111;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .buy-book-section {
    padding: 65px 22px 70px;
  }

  .buy-book-container {
    max-width: 760px;
  }

  .store-card {
    width: 210px;
  }
}

@media (max-width: 768px) {
  .buy-book-section {
    padding: 55px 20px 60px;
  }

  .buy-book-heading {
    margin-bottom: 32px;
  }

  .buy-book-heading h2 {
    font-size: 38px;
  }

  .book-store-grid {
    gap: 18px;
  }

  .store-card {
    width: calc(50% - 9px);
    min-height: 90px;
  }

  .store-card h3 {
    font-size: 17px;
  }

  .store-card span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .buy-book-section {
    padding: 48px 16px 52px;
  }

  .buy-book-heading h2 {
    font-size: 32px;
  }

  .buy-book-heading p {
    font-size: 12px;
  }

  .book-store-grid {
    gap: 14px;
  }

  .store-card {
    width: 100%;
    max-width: 310px;
    min-height: 86px;
    border-radius: 11px;
  }

  .store-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .store-card span {
    font-size: 12px;
  }
}


/* ================= REVIEWS SECTION ================= */

.reviews-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 20px 75px;
}

.reviews-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  color: #050505;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ================= REVIEWS GRID ================= */

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

.review-card {
  background: #141d24;
  min-height: 265px;
  border-radius: 10px;
  padding: 38px 28px 32px;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* subtle hover background effect */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 23, 23, 0.18),
    transparent 45%
  );
  opacity: 0;
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.review-card:hover::before {
  opacity: 1;
}

.quote-icon {
  color: #ff1717;
  font-size: 86px;
  line-height: 0.6;
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
}

.review-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 600;
  max-width: 260px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}

.review-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .reviews-section {
    padding: 65px 22px 70px;
  }

  .reviews-container {
    max-width: 820px;
  }

  .reviews-grid {
    gap: 18px;
  }

  .review-card {
    min-height: 245px;
    padding: 34px 22px 30px;
  }

  .review-card h3 {
    font-size: 19px;
  }

  .review-card p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 55px 20px 60px;
  }

  .reviews-title {
    margin-bottom: 28px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
    gap: 20px;
  }

  .review-card {
    min-height: 235px;
  }

  .quote-icon {
    font-size: 78px;
  }

  .review-card h3 {
    font-size: 20px;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 48px 16px 52px;
  }

  .reviews-title {
    font-size: 31px;
  }

  .review-card {
    min-height: 225px;
    padding: 32px 20px 28px;
    border-radius: 9px;
  }

  .quote-icon {
    font-size: 70px;
    margin-bottom: 20px;
  }

  .review-card h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .review-card p {
    font-size: 14px;
  }
}


/* ================= CONSULTATION + COUNTDOWN SECTION ================= */

.consult-release-section {
  width: 100%;
  position: relative;
  background: #ffffff;
  overflow: hidden ;
}

/* ================= TOP CONSULTATION BANNER ================= */

.consult-banner {
  width: 100%;
  min-height: 420px;
  position: relative;

  /* yahan apni background image lagani hai */
  background-image: url("../images/Video\ Section\ \(1\).png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.consult-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.consult-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 40px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.consult-content h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 12px;
}

.consult-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 26px;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 28px;
  background: #ffffff;
  color: #ff1717;
  text-decoration: none;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.35s ease;
}

.consult-btn:hover {
  background: #ff1717;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 23, 23, 0.3);
}

/* ================= OVERLAP BOOK IMAGE ================= */

.consult-book-img {
  position: absolute;
  right: 1%;
  top: 25px;
  z-index: 4;
  width: 700px;
  pointer-events: none;
}

.consult-book-img img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.45));
}

/* ================= COUNTDOWN WHITE AREA ================= */

.countdown-area {
  width: 100%;
  background: #ffffff;
  padding: 98px 20px 115px;
  position: relative;
  z-index: 2;
}

.countdown-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.countdown-container h2 {
  color: #050505;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 14px;
}

.countdown-container p {
  color: #222222;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .consult-book-img {
    right: 6%;
    width: 275px;
  }

  .countdown-container {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .consult-banner {
    min-height: 300px;
  }

  .consult-content h2 {
    font-size: 48px;
  }

  .consult-content p {
    font-size: 16px;
  }

  .consult-book-img {
    right: 3%;
    top: 130px;
    width: 235px;
  }

  .countdown-area {
    padding-top: 78px;
  }

  .countdown-container {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .consult-release-section {
    overflow: visible;
  }

  .consult-banner {
    min-height: auto;
    padding: 65px 20px 45px;
  }

  .consult-content {
    padding: 0;
  }

  .consult-content h2 {
    font-size: 40px;
  }

  .consult-content p {
    font-size: 15px;
  }

  .consult-content p br {
    display: none;
  }

  .consult-book-img {
    position: relative;
    top: auto;
    right: auto;
    width: 260px;
    margin: -25px auto 0;
    z-index: 5;
  }

  .countdown-area {
    padding: 45px 20px 60px;
    text-align: center;
  }

  .countdown-container h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .consult-banner {
    padding: 55px 16px 38px;
  }

  .consult-content h2 {
    font-size: 34px;
  }

  .consult-content p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .consult-btn {
    min-height: 38px;
    padding: 0 24px;
    font-size: 11px;
  }

  .consult-book-img {
    width: 220px;
    margin-top: -18px;
  }

  .countdown-area {
    padding: 38px 16px 52px;
  }

  .countdown-container h2 {
    font-size: 31px;
  }

  .countdown-container p {
    font-size: 12px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  width: 100%;
  background: #141d24;
}

/* footer upper area */
.footer-main {
  width: 100%;
  background: #141d24;
  padding: 80px 20px 48px;
}

.footer-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ================= FOOTER LOGO ================= */

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 34px;
}

.footer-logo img {
  width: 285px;
  max-width: 100%;
  display: block;
}

/* ================= FOOTER NAV ================= */

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #ff1717;
  transform: translateY(-2px);
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  width: 100%;
  background: #0b1014;
  padding: 28px 20px;
  text-align: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .footer-main {
    padding: 65px 20px 42px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-logo img {
    width: 235px;
  }

  .footer-nav {
    gap: 18px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 24px 18px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 55px 16px 36px;
  }

  .footer-logo img {
    width: 205px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 22px 16px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}
























/* ================= MOBILE HEADER + HERO FIX ================= */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Header hamesha banner ke upar rahe */
.site-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 9999;
}

/* Mobile me header white/block na banay */
@media (max-width: 768px) {
  .site-header {
    min-height: 80px !important;
    position: absolute !important;
    background: rgba(0, 0, 0, 0.18) !important;
  }

  .header-container {
    min-height: 80px;
    padding: 0 18px;
  }

  .logo img,
  .site-logo img {
    max-width: 120px;
    height: auto;
    display: block;
  }

  .menu-icon {
    display: flex;
    z-index: 10001;
  }

  .menu-icon span {
    background: #ffffff !important;
  }

  .navbar {
    position: absolute;
    top: 80px !important;
    left: 0;
    width: 100%;
    background: #141d24 !important;
    z-index: 10000;
  }
}
/* ================= HERO RESPONSIVE FIX ================= */

.hero-banner {
  position: relative;
  min-height: 100vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.hero-container {
  min-height: 100vh;
  padding-top: 130px !important;
}

/* Desktop title safe */
.hero-title {
  word-break: normal;
  white-space: nowrap;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 100vh;
    background-position: center center !important;
  }

  .hero-container {
    min-height: 100vh;
    padding: 120px 18px 55px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    width: 100% !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 3;
  }

  .hero-small-text {
    font-size: 15px !important;
    margin-bottom: 4px;
  }

  .hero-author {
    font-size: 24px !important;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 70px) !important;
    line-height: 0.95 !important;
    letter-spacing: 2px !important;
    white-space: normal !important;
    max-width: 100%;
    margin: 0 auto 18px;
  }

  .hero-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 92%;
    margin: 0 auto 26px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 14px;
  }

  .btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 13px;
  }

  .hero-book {
    width: 100% !important;
    position: absolute;
    right: -45px;
    bottom: 0;
    opacity: 0.55;
    z-index: 2;
    pointer-events: none;
  }

  .hero-book img {
    width: 260px !important;
    transform: rotate(-10deg) !important;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 105px 16px 45px !important;
  }

  .hero-title {
    font-size: clamp(38px, 13vw, 56px) !important;
    letter-spacing: 1px !important;
  }

  .hero-author {
    font-size: 22px !important;
  }

  .hero-description {
    font-size: 13px !important;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 230px;
  }

  .hero-book {
    right: -70px;
    bottom: 10px;
    opacity: 0.42;
  }

  .hero-book img {
    width: 230px !important;
  }
}
/* Hero heading image responsive fix */

.hero-heading-img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 18px 0 18px;
}

/* Agar hero content center hai */
.hero-content {
  max-width: 800px;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-heading-img {
    max-width: 92vw;
    margin: 16px auto 18px;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .hero-heading-img {
    width: 100%;
    max-width: 94vw;
    margin: 14px auto 16px;
  }
}
/* ================= SYNOPSIS MOBILE GAP FIX ================= */

@media (max-width: 768px) {
  .synopsis-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .synopsis-container p {
    margin-bottom: 20px !important;
  }

  .extended-box {
    margin-top: 82px !important;
    transform: translateY(0) !important;
    min-height: 250px !important;
  }
}

@media (max-width: 480px) {
  .synopsis-section {
    padding-top: 50px !important;
    padding-bottom: 0px !important;
  }

  .extended-box {
    margin-top: 45px !important;
    transform: translateY(0) !important;
    min-height: 200px !important;
  }
}
/* ================= AUTHOR MOBILE SPACING FIX ================= */

@media (max-width: 768px) {
  .author-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .author-container {
    gap: 42px !important;
  }

  .author-image-box {
    max-width: 380px !important;
    margin: 0 auto !important;
  }

  .author-image-box img {
    height: 360px !important;
    object-fit: cover !important;
  }

  .author-content {
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .author-section {
    padding-top: 50px !important;
    padding-bottom: 35px !important;
  }

  .author-container {
    gap: 35px !important;
  }

  .author-image-box {
    max-width: 100% !important;
  }

  .author-image-box img {
    height: 300px !important;
  }

  .author-social {
    right: 10px !important;
    width: 38px !important;
    padding: 12px 0 !important;
    gap: 11px !important;
  }

  .author-social a {
    font-size: 12px !important;
  }

  .author-content h2 {
    font-size: 31px !important;
  }
}
/* Author list mobile center fix */

@media (max-width: 768px) {
  .author-list {
    text-align: center !important;
    max-width: 100% !important;
  }

  .author-list li {
    display: inline-block;
    text-align: left;
    width: auto;
    max-width: 100%;
  }
}



/* Consultation book image mobile center fix */

@media (max-width: 768px) {
  .consult-book-img {
    position: relative !important;
    left: auto !important;
    right: 30px !important;
    top: auto !important;
    transform: none !important;

    width: 240px !important;
    margin: -25px auto 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .consult-book-img img {
    width: 100% !important;
    max-width: 240px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .consult-book-img {
    width: 210px !important;
    margin: -18px auto 0 !important;
  }

  .consult-book-img img {
    max-width: 210px !important;
  }
}

/* ================= HERO / BANNER MOBILE FIX ONLY ================= */

@media (max-width: 768px) {
  .hero-banner {
    min-height: 320px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .hero-container {
    min-height: 320px !important;
    padding: 95px 16px 55px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 360px !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .hero-small-text {
    font-size: 12px !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
  }

  .hero-author {
    font-size: 17px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }

  .hero-heading-img {
    width: 100% !important;
    max-width: 330px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 12px !important;
  }

  .hero-description {
    max-width: 300px !important;
    margin: 0 auto 22px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .hero-buttons {
    justify-content: center !important;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 190px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 11px !important;
  }

  .hero-book {
    position: absolute !important;
    width: 220px !important;
    right: -85px !important;
    bottom: 70px !important;
    top: auto !important;
    opacity: 0.45 !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .hero-book img {
    width: 100% !important;
    height: auto !important;
    transform: rotate(-10deg) !important;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    min-height: 300px !important;
  }

  .hero-container {
    min-height: 300px !important;
    padding: 85px 14px 45px !important;
  }

  .hero-content {
    max-width: 310px !important;
  }

  .hero-heading-img {
    max-width: 290px !important;
  }

  .hero-description {
    max-width: 270px !important;
    font-size: 10px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
  }

  .hero-buttons .btn {
    width: 180px !important;
    min-height: 40px !important;
  }

  .hero-book {
    width: 200px !important;
    right: -90px !important;
    bottom: 78px !important;
    opacity: 0.38 !important;
  }
}
/* =====================================================
   FULL PAGE ENTRANCE ANIMATIONS
   Paste this at the END of style.css
===================================================== */

/* Smooth page feel */
html {
  scroll-behavior: smooth;
}

body {
  animation: pageFadeIn 0.7s ease both;
}

/* ================= KEYFRAMES ================= */

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes softPop {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(25px);
  }
  70% {
    opacity: 1;
    transform: scale(1.04) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ================= HEADER ANIMATION ================= */

.site-header .logo,
.site-header .site-logo {
  opacity: 0;
  animation: fadeDown 0.8s ease both;
  animation-delay: 0.15s;
}

.navbar a {
  opacity: 0;
  animation: fadeDown 0.7s ease both;
}

.navbar a:nth-child(1) {
  animation-delay: 0.25s;
}

.navbar a:nth-child(2) {
  animation-delay: 0.32s;
}

.navbar a:nth-child(3) {
  animation-delay: 0.39s;
}

.navbar a:nth-child(4) {
  animation-delay: 0.46s;
}

.navbar a:nth-child(5) {
  animation-delay: 0.53s;
}

.navbar a:nth-child(6) {
  animation-delay: 0.6s;
}

.header-btn {
  opacity: 0;
  animation: softPop 0.8s ease both;
  animation-delay: 0.7s;
}

.menu-icon {
  opacity: 0;
  animation: fadeDown 0.7s ease both;
  animation-delay: 0.35s;
}

/* ================= HERO / BANNER ANIMATION ================= */

.hero-banner {
  animation: pageFadeIn 1s ease both;
}

.hero-small-text {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.45s;
}

.hero-author {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.58s;
}

.hero-title,
.hero-heading-img {
  opacity: 0;
  animation: zoomIn 0.95s ease both;
  animation-delay: 0.72s;
}

.hero-description {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.9s;
}

.hero-buttons .btn:nth-child(1) {
  opacity: 0;
  animation: softPop 0.8s ease both;
  animation-delay: 1.05s;
}

.hero-buttons .btn:nth-child(2) {
  opacity: 0;
  animation: softPop 0.8s ease both;
  animation-delay: 1.18s;
}

.hero-book {
  opacity: 0;
  animation: fadeRight 1.1s ease both;
  animation-delay: 0.95s;
}

/* ================= SYNOPSIS SECTION ================= */

.synopsis-container {
  opacity: 0;
  animation: fadeUp 0.9s ease both;
  animation-delay: 1.25s;
}

.synopsis-container .section-title {
  animation: fadeUp 0.8s ease both;
}

.synopsis-container p {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
}

.synopsis-container p:nth-of-type(1) {
  animation-delay: 1.35s;
}

.synopsis-container p:nth-of-type(2) {
  animation-delay: 1.48s;
}

.synopsis-container p:nth-of-type(3) {
  animation-delay: 1.61s;
}

.extended-box {
  opacity: 0;
  animation: zoomIn 0.9s ease both;
  animation-delay: 1.75s;
}

/* ================= AUTHOR SECTION ================= */

.author-image-box {
  opacity: 0;
  animation: fadeLeft 0.95s ease both;
  animation-delay: 1.9s;
}

.author-social {
  opacity: 0;
  animation: softPop 0.8s ease both;
  animation-delay: 2.15s;
}

.author-content {
  opacity: 0;
  animation: fadeRight 0.95s ease both;
  animation-delay: 2s;
}

.author-list li {
  opacity: 0;
  animation: fadeUp 0.65s ease both;
}

.author-list li:nth-child(1) {
  animation-delay: 2.18s;
}

.author-list li:nth-child(2) {
  animation-delay: 2.28s;
}

.author-list li:nth-child(3) {
  animation-delay: 2.38s;
}

.author-list li:nth-child(4) {
  animation-delay: 2.48s;
}

.author-list li:nth-child(5) {
  animation-delay: 2.58s;
}

.author-btn {
  opacity: 0;
  animation: softPop 0.75s ease both;
  animation-delay: 2.7s;
}

/* ================= BUY BOOK SECTION ================= */

.buy-book-heading {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
  animation-delay: 2.75s;
}

.store-card {
  opacity: 0;
  animation: softPop 0.75s ease both;
}

.store-card:nth-child(1) {
  animation-delay: 2.9s;
}

.store-card:nth-child(2) {
  animation-delay: 3s;
}

.store-card:nth-child(3) {
  animation-delay: 3.1s;
}

.store-card:nth-child(4) {
  animation-delay: 3.2s;
}

.store-card:nth-child(5) {
  animation-delay: 3.3s;
}

.store-card:nth-child(6) {
  animation-delay: 3.4s;
}

.store-card:nth-child(7) {
  animation-delay: 3.5s;
}

/* ================= REVIEWS SECTION ================= */

.reviews-title {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
  animation-delay: 3.55s;
}

.review-card {
  opacity: 0;
  animation: fadeUp 0.85s ease both;
}

.review-card:nth-child(1) {
  animation-delay: 3.7s;
}

.review-card:nth-child(2) {
  animation-delay: 3.85s;
}

.review-card:nth-child(3) {
  animation-delay: 4s;
}

/* ================= CONSULTATION SECTION ================= */

.consult-banner {
  animation: pageFadeIn 1s ease both;
}

.consult-content {
  opacity: 0;
  animation: zoomIn 0.9s ease both;
  animation-delay: 4.1s;
}

.consult-book-img {
  opacity: 0;
  animation: fadeRight 1s ease both;
  animation-delay: 4.25s;
}

.countdown-container {
  opacity: 0;
  animation: fadeLeft 0.9s ease both;
  animation-delay: 4.4s;
}

/* ================= FOOTER ================= */

.footer-logo {
  opacity: 0;
  animation: zoomIn 0.8s ease both;
  animation-delay: 4.55s;
}

.footer-nav a {
  opacity: 0;
  animation: fadeUp 0.65s ease both;
}

.footer-nav a:nth-child(1) {
  animation-delay: 4.65s;
}

.footer-nav a:nth-child(2) {
  animation-delay: 4.72s;
}

.footer-nav a:nth-child(3) {
  animation-delay: 4.79s;
}

.footer-nav a:nth-child(4) {
  animation-delay: 4.86s;
}

.footer-nav a:nth-child(5) {
  animation-delay: 4.93s;
}

.footer-nav a:nth-child(6) {
  animation-delay: 5s;
}

.footer-bottom {
  opacity: 0;
  animation: fadeUp 0.7s ease both;
  animation-delay: 5.05s;
}

/* ================= HOVER ANIMATION EXTRA ================= */

.btn,
.header-btn,
.author-btn,
.consult-btn,
.store-card,
.review-card,
.footer-nav a,
.navbar a {
  will-change: transform;
}

.btn:hover,
.header-btn:hover,
.author-btn:hover,
.consult-btn:hover {
  transform: translateY(-4px);
}

.store-card:hover,
.review-card:hover {
  transform: translateY(-8px);
}

/* ================= MOBILE ANIMATION FIX ================= */

@media (max-width: 768px) {
  .hero-book,
  .author-image-box,
  .author-content,
  .consult-book-img,
  .countdown-container {
    animation-name: fadeUp;
  }

  .hero-heading-img {
    animation-name: zoomIn;
  }

  .store-card,
  .review-card {
    animation-name: fadeUp;
  }
}

/* ================= ACCESSIBILITY ================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ================= DOUBLE SCROLLBAR FIX ================= */

html,
body {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* Kisi bhi wrapper/section ko apna vertical scrollbar na banane do */
main,
section,
.site-wrapper,
.page-wrapper,
.hero-banner,
.hero-container,
.synopsis-section,
.author-section,
.buy-book-section,
.reviews-section,
.consult-release-section,
.site-footer {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}

/* Hero banner ke liye safe height */
.hero-banner {
  height: auto ;
  min-height: 100vh ;
}

/* Hero container andar scroll create na kare */
.hero-container {
  height: auto ;
  min-height: 100vh ;
}
.site-header .logo img{
  width: 100%;
  height: 60px;
  object-fit: cover;
}
@media(max-width: 768px){
  .site-header .logo img{
  width: 100%;
  height: 40px;
  object-fit: cover;
}
  .hero-banner {
    min-height: 70vh ;
}

/* Hero container andar scroll create na kare */
.hero-container {
  min-height: 70vh ;
}
}


@media(max-width: 1440px){
  
  .extended-box{
    margin-top: 100px;
  }

  .author-section {
  padding: 20px 5px  20px 5px;
}
}



@media(max-width: 1680px){

  .synopsis-section{
    padding: 50px 10px;
  }
  
  .extended-box{
    margin-top: 70px;
  }

  .author-section {
  padding: 100px 5px  100px 5px;
}
}