:root {
  --deep-blue: #0a2342;
  --gold: #d4af37;
  --light-blue: #1e3a5f;
  --text-dark: #333;
  --text-light: #f8f9fa;
  --accent-gold: #f4e4c1;
  --dark-gold: #b8941f;
  --desert-orange: #e67e22;
  --desert-red: #c0392b;
  --sunset-yellow: #f39c12;
  --author-bg: #8b0000;
  --success-green: #27ae60;
  --purple: #8e44ad;
  --film-red: #e74c3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);

  overflow-x: hidden;
  line-height: 1.6;
}
html{
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  color: var(--deep-blue);
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}
.book-badge small{
        font-size: 0.675em;
}

/* Page Load Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--deep-blue) 0%,
    #1a3a6c 50%,
    var(--light-blue) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}


@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
      0 0 40px rgba(212, 175, 55, 0.6);
  }
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--gold);
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  background-color: rgba(10, 35, 66, 0.95);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: var(--gold) !important;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--text-light) !important;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

/* Enhanced Hero Section with Contained Book Layout */
.hero-section {
  min-height: 100vh;
  /* background: linear-gradient(
    135deg,
    var(--deep-blue) 0%,
    #0f2947 25%,
    #1a3a6c 50%,
    #244b7d 75%,
    var(--light-blue) 100%
  ); */
  background: #f5f5f5;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.sunset-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(243, 156, 18, 0.2) 0%,
    rgba(230, 126, 34, 0.1) 40%,
    transparent 70%
  );

  animation: sunsetPulse 8s ease-in-out infinite alternate;
}

@keyframes sunsetPulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.8;
  }
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  animation: float 20s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

.sand-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(243, 156, 18, 0.6);
  border-radius: 50%;
  animation: sandFloat 15s infinite linear;
}

@keyframes sandFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 600;
  /* margin-bottom: 1.5rem; */
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  /* background: linear-gradient(to right, #fff, var(--accent-gold)); */
  background: linear-gradient(to right, #152d4a, #152d4a);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  color: var(--deep-blue);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: justify;
}

.tagline {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  /* font-style: italic; */
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  color: var(--deep-blue);
}

.tagline::before,
.tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--light-blue));
}

.tagline::before {
  left: -70px;
}

/* .tagline::after {
  right: -10px;
  background: linear-gradient(to left, transparent, var(--gold));
} */

.tagline span {
  /* display: inline-block; */
  opacity: 0;
  animation: fadeInLetter 0.6s ease forwards;
  position: relative;
}

.tagline span:nth-child(1) {
  animation-delay: 1.1s;
}
.tagline span:nth-child(2) {
  animation-delay: 1.3s;
}
.tagline span:nth-child(3) {
  animation-delay: 1.5s;
}
.tagline span:nth-child(4) {
  animation-delay: 1.7s;
}
.tagline span:nth-child(5) {
  animation-delay: 1.9s;
}

@keyframes fadeInLetter {
  to {
    opacity: 1;
    transform: translateY(0);
    color: var(--deep-blue);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
    color: white;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(50px);
  }
}

/* Contained Book Slider in Hero Section */
.book-slider-container {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.book-slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.book-slide {
  position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--deep-blue);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
  left: 50%;
  top: 50%;
}

.book-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  z-index: 3;
}

.book-slide.left {
  opacity: 0.7;
  transform: translate(-80%, -50%) scale(0.75) rotate(20deg);
  z-index: 2;
}

.book-slide.right {
  opacity: 0.7;
  transform: translate(-20%, -50%) scale(0.75) rotate(-20deg);
  z-index: 2;
}

.book-slide.far-left {
  opacity: 0.3;
  transform: translate(-110%, -50%) scale(0.6) rotate(30deg);
  z-index: 1;
}

.book-slide.far-right {
  opacity: 0.3;
  transform: translate(10%, -50%) scale(0.6) rotate(-30deg);
  z-index: 1;
}

.book-slide:hover {
  transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
  z-index: 4;
  opacity: 1;
}

.book-slide.active:hover {
  transform: translate(-50%, -50%) scale(1.08) rotate(0deg);
}

.book-slide.left:hover {
  transform: translate(-80%, -50%) scale(0.8) rotate(15deg);
  opacity: 1;
}

.book-slide.right:hover {
  transform: translate(-20%, -50%) scale(0.8) rotate(-15deg);
  opacity: 1;
}

.book-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.5s ease;
}

.book-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Cinzel", serif;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: rotate(15deg);
  z-index: 4;
  font-size: 0.6rem;
}

.book-info {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(10, 35, 66, 0.9);
  padding: 8px;
  border-radius: 0 0 5px 5px;
}

.book-slide.active .book-info,
.book-slide:hover .book-info {
  opacity: 1;
}

.book-title {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.book-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 15px;
  pointer-events: all;
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.2);
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--deep-blue);
  margin-top: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
  transition: all 0.3s ease;
  object-fit: cover;
  background-color: var(--author-bg);
}

.author-image:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(212, 175, 55, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: white;
  padding: 15px 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-right: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.4s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  padding: 15px 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--deep-blue);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.6s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-outline-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-gold:hover::before {
  width: 100%;
}

.btn-outline-gold:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
.section {
  padding: 40px 0;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--deep-blue);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-subtitle {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

/* About Author Section */
.about-author {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.author-info {
  padding: 3rem;
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.author-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.author-info h3 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.author-info p {
  font-family: "Crimson Text", serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1rem;
}

.author-profile-img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  object-fit: cover;
  background-color: var(--author-bg);
}

.divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
}

/* Books Collection Section */
.books-collection {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.book-showcase-card {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.book-showcase-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-showcase-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.book-showcase-card:hover .book-showcase-img {
  transform: scale(1.05);
}

.book-showcase-body {
  padding: 2rem;
}

.book-showcase-body h4 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.book-showcase-body p {
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.award-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.bestseller-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--success-green), #229954);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.new-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--purple), #7d3c98);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

/* Films Section */
.films-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.film-card {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.film-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.film-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.film-card:hover .film-img {
  transform: scale(1.05);
}

.film-body {
  padding: 2rem;
}

.film-body h4 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.film-body p {
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.film-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--film-red), #c0392b);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.hit-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--success-green), #229954);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

/* Featured Book Section */
.featured-book {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.featured-book h3 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 1.5rem;
}

.book-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-blue);
  padding: 2rem;
  border-left: 5px solid var(--gold);
  margin: 2.5rem 0;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
  position: relative;
}

.book-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

.book-carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-caption {
  background: linear-gradient(
    to top,
    rgba(10, 35, 66, 0.95),
    rgba(10, 35, 66, 0.8)
  );
  padding: 2rem;
  border-radius: 15px;
}

.carousel-caption h5 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.progress-container {
  margin: 2.5rem 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--deep-blue);
}

.progress {
  height: 12px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  background: linear-gradient(to right, var(--deep-blue), var(--gold));
  height: 100%;
  border-radius: 10px;
  animation: progressAnimation 2s ease forwards;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
}

/* Blog Section */
.blog-card {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-body h4 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.blog-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-family: "Crimson Text", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 1.5rem;
  border: 3px solid var(--gold);
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin: 0;
}

.testimonial-author-info p {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.rating {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-form {
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 2rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 15px 20px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  transform: translateY(-8px);
  color: white;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0f2947 100%);
  color: white;
  padding: 50px 0 30px;
}

footer h3 {
  font-family: "Cinzel", serif;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size:1.5rem;
}

footer p {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 12px;
  right: 40px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-btn-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.floating-btn-inner:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--dark-gold), var(--gold));
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .tagline::before,
  .tagline::after {
    display: none;
  }

  .book-slider {
    max-width: 350px;
    height: 350px;
  }

  .book-slide {
    width: 175px;
    height: 262px;
  }

  .author-image {
    width: 130px;
    height: 130px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  /* Hero Section Mobile */
  .hero-section {
    min-height: auto;
    /*padding: 110px 0 80px;*/
    padding: 108px 0px 15px 0px;
  }
  .blog-detail-body h2 {
      font-size: 1.5rem;
  }
  .blog-detail-body h2 {
       font-size: 1.5rem;
  }

  .hero-content {
    text-align: center;
    /* margin-bottom: 3rem; */
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .tagline {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 12px 30px;
    font-size: 0.95rem;
    margin: 5px;
    display: inline-block;
    width: auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 1rem;*/
  }

  .book-slider-container {
    height: 300px;
  }

  .book-slider {
    max-width: 280px;
    height: 280px;
  }

  .book-slide {
    width: 140px;
    height: 210px;
  }

  .book-slide.active {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  .book-slide.left {
    transform: translate(-70%, -50%) scale(0.7) rotate(15deg);
  }

  .book-slide.right {
    transform: translate(-30%, -50%) scale(0.7) rotate(-15deg);
  }

  .book-slide.far-left {
    transform: translate(-90%, -50%) scale(0.55) rotate(25deg);
  }

  .book-slide.far-right {
    transform: translate(-10%, -50%) scale(0.55) rotate(-25deg);
  }

  .author-image {
    width: 100px;
    height: 100px;
    margin-top: 2rem;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    margin: 0 10px;
  }

  /* Section Mobile */
  .section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  /* About Author Mobile */
  .author-info {
    padding: 2rem;
    margin-top: 2rem;
  }

  .author-info h3 {
    font-size: 1.8rem;
  }

  .author-info p {
    font-size: 1.1rem;
  }

  .author-profile-img {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  /* Books Collection Mobile */
  .book-showcase-card {
    margin-bottom: 2rem;
  }

  .book-showcase-img {
    height: 250px;
    object-fit: contain;
  }


  .book-showcase-body {
    padding: 1.5rem;
  }

  .book-showcase-body h4 {
    font-size: 1.3rem;
  }

  .book-showcase-body p {
    font-size: 1rem;
  }

  /* Films Mobile */
  .film-card {
    margin-bottom: 2rem;
  }

  .film-img {
    height: 250px;
  }

  .film-body {
    padding: 1.5rem;
  }

  .film-body h4 {
    font-size: 1.3rem;
  }

  .film-body p {
    font-size: 1rem;
  }

  /* Featured Book Mobile */
  .featured-book {
    padding: 2rem;
  }

  .featured-book h3 {
    font-size: 1.79rem;
  }

  .book-quote {
    font-size: 1.2rem;
    padding: 1.5rem;
  }

  .carousel-item img {
    height: 250px;
  }

  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h5 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  /* Blog Cards Mobile */
  .blog-card-body {
    padding: 1.5rem;
  }

  .blog-card-body h4 {
    font-size: 1.3rem;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  /* Contact Mobile */
  .contact-form {
    padding: 2rem;
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    font-size: 1.1rem;
  }

  /* Footer Mobile */
  footer {
    padding: 30px 0 20px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*margin-top: 1rem;*/
  }

  .footer-links a {
    margin: 5px 10px;
    font-size: 0.9rem;
  }

  /* Floating Button Mobile */
  .floating-btn {
    bottom: 14px;
    right: 20px;
  }

  .floating-btn-inner {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  /* Hide some animations on mobile for better performance */
  .sand-particle {
    display: none;
  }

  .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 14px;
  }

  .book-slider {
    max-width: 240px;
    height: 240px;
  }

  .book-slide {
    width: 120px;
    height: 180px;
  }

  .author-image {
    width: 80px;
    height: 80px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .book-quote {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .carousel-item img {
    height: 200px;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* @media (min-width: 767px) and (max-width: 992px) {
 
}*/
@media (min-width: 992px) and (max-width: 145000px) {
     .hero-margin-top {
    margin-top: 110px;
  }
  .btn-gold {
  margin-bottom: 10px;
}
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-content {
  
      position: relative;
      z-index: 2;
      color: white;
      margin-top: 124px;
    }
  }


/* About Page Header Styles */
.about-header {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(
    135deg,
    var(--deep-blue) 0%,
    #0f2947 25%,
    #1a3a6c 50%,
    #244b7d 75%,
    var(--light-blue) 100%
  );
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://picsum.photos/seed/about-pattern/1920/1080.jpg")
    center/cover;
  opacity: 0.15;
  z-index: 1;
}

.about-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #f8f9fa, transparent);
  z-index: 2;
}

.about-header-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 80px 0;
}

.about-breadcrumb {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: var(--gold);
}

.about-breadcrumb .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb .current {
  color: var(--gold);
  font-weight: 600;
}

.about-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  background: linear-gradient(to right, #fff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  color: var(--accent-gold);
  max-width: 700px;
}

.about-description {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  max-width: 600px;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.about-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-meta-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.about-meta-item span {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.btn-about {
  padding: 15px 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary-about {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-about:hover::before {
  left: 100%;
}

.btn-primary-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  color: white;
}

.btn-secondary-about {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-about:hover {
  background-color: white;
  color: var(--deep-blue);
  transform: translateY(-5px);
}

/* Background Animation */
.about-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  animation: float 20s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

.sunset-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(243, 156, 18, 0.2) 0%,
    rgba(230, 126, 34, 0.1) 40%,
    transparent 70%
  );
  animation: sunsetPulse 8s ease-in-out infinite alternate;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}

@keyframes sunsetPulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

/* Decorative Elements */
.decorative-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 3;
}

.decorative-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.7;
  animation: pulse 2s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-title {
    font-size: 3.5rem;
  }

  .about-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .about-header {
    min-height: 60vh;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-subtitle {
    font-size: 1.4rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-meta {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-header {
    min-height: 50vh;
    padding: 60px 0;
  }


  .about-header-content {
    text-align: center;
  }

  .about-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .about-description {
    font-size: 0.95rem;
    margin: 0 auto 2rem;
  }

  .about-meta {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .about-buttons {
    justify-content: center;
  }

  .btn-about {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .floating-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-header {
    min-height: 45vh;
    padding: 50px 0;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-description {
    font-size: 0.9rem;
  }

  .about-meta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-about {
    width: 100%;
    max-width: 250px;
  }

  .decorative-line {
    width: 150px;
  }
}

.contact-info {
  padding: 3rem;
}
a {
  text-decoration: none;
}

/* --- Blog Details Page Styles --- */
.blog-detail-header {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}
.blog-detail-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.blog-detail-header:hover img {
  transform: scale(1);
}
.blog-detail-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}
.blog-detail-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.blog-detail-title {
  font-size: 2rem;
  font-weight: 900;
  /* font-family: "Playfair Display", serif; */
  color: #ffc107;
}
.blog-detail-meta {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.blog-detail-body {
  max-width: 800px;
  margin: 4rem auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}
.blog-detail-body p {
  margin-bottom: 1.5rem;
}
.blog-detail-body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2342;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  /* font-family: "Playfair Display", serif */
}
.blog-detail-body blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #3b3d3e;
}
.author-bio {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.author-bio-content h4 {
  color: white;
  font-weight: 700;
}
.author-bio-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.comments-section {
  margin-top: 4rem;
}
.comments-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}
.comment-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.comment-form input,
.comment-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 1rem;
}
.comment-form button {
  background: var(--gradient-4);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.comment-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}
.single-comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.single-comment img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  flex-grow: 1;
}
.comment-content h5 {
  color: var(--accent-color);
  font-weight: 600;
}
.comment-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.blog-navigation a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.blog-navigation a:hover {
  background: var(--gradient-4);
}
@media (max-width: 767px) {
  /* Hero Section Mobile */
.book-showcase-img {
    object-fit: contain;
        /*height: 773px;*/
}
   .film-img {
        /*height: 715px;*/
           object-fit: contain;
    }

  .blog-detail-body h2 {
      font-size: 1.2rem;
  }
  .blog-detail-title {
       font-size: 1.3rem;
  }
  .blog-detail-header {
  position: relative;
  height: 65vh;
  }
  }
  footer h3{
      font-size:1.5rem;
  }
   footer p{
       font-size:1rem;
   }
   
          /* The main button container */
        .whatsapp-button {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 15px;
            left: 15px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            /* --- Animation --- */
            animation: pulse 2s infinite;
            transition: transform 0.2s ease-in-out;
        }

        /* Hover effect */
        .whatsapp-button:hover {
            transform: scale(1.1);
        }
        
        /* The pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Styling for the SVG icon */
        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }
  
