:root {
  --primary-brown: #8B4513;
  --secondary-brown: #d44a0a;
  --light-brown: #DEB887;
  --text-brown: #654321;
}

body {
  font-family: 'Georgia', serif;
}

.navbar-brand {
  color: var(--text-brown) !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-brown) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-brown) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-brown);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.hero-section {
  width: 100%;
  height: 100vh;

  position: relative;
  overflow: hidden;
}

.carousel-inner {
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  /* subtle overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-subtitle .quote-highlight {
  font-size: 1.1rem;
  font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 768px) {

  .hero-section,
  .carousel-item {
    height: 45vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle .quote-highlight {
    font-size: 1rem;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 60px;
  height: 60px;
  /*background: var(--primary-brown);*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: white;
  opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  /* .navbar-brand {
    font-size: 1.2rem;
  } */

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-section {
    /*height: 70vh;*/
    min-height: 190px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 1rem;
  }
}

.flip-card {
  background: transparent;
  perspective: 1000px;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 15px;
  background-color: #333;
}

.flip-card-back {
  background: #f8f9fa;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.flip-card-back p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/*===book==*/
.publications-section {
  padding: 30px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background-color: #e9ecef;
}

#bookCarousel {
  max-height: 220px;
  /* ↓ smaller fixed height */
  overflow: hidden;
}

.book-section {
  align-items: center;
  padding: 15px 0;
  /* margin: 0;
  padding: 10px 0;
  min-height: 180px; */
}

.book-img {
  width: 160px;
  /* increased from 100px → 160px */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.book-img:hover {
  transform: scale(1.15);
}

.book-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.book-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 0;
}

.current-issue {
  font-size: 0.85rem;
  font-weight: 500;
}

.issue-red {
  color: #c0392b;
}

.issue-brown {
  color: #5a3d0c;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(50%);
}

/* Responsive */
@media (max-width: 768px) {
  /* Allow carousel to grow */
  #bookCarousel {
    max-height: unset !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Allow slide item to auto expand */
  .carousel-item {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 20px !important;
  }

  /* Make book section vertical */
  .book-section {
    flex-direction: column !important;
    text-align: center !important;
    padding-bottom: 40px !important;
    /* Extra gap for WhatsApp button */
  }

  /* Image responsive */
  .book-img {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
  }

  /* WhatsApp button (ensure visibility) */
  .book-section a.btn {
    display: inline-block !important;
    margin-top: 10px;
  }
}


.guest-banner {
  background-color: #b04f0a;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.note-text {
  color: #555;
  font-size: 0.95rem;
  text-align: center;
  margin: 10px 0 30px;
}

.contact-info p {
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.warning-text {
  color: #f65a57;
  font-size: 0.9rem;
  margin-top: 15px;
}

/*youtube video */
.featured-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem;
}

/*.featured-section h4 {
      font-weight: 700;
      color: #0056b3;
      margin-bottom: 1.5rem;
    }*/

.video-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.video-title {
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}

/* gallery css */
.gallery-section {
  padding: 80px 0;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 50px;
  /* text-transform: uppercase; */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  /*border: 3px solid #8b4513;*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 4px 15px rgba(246, 245, 245, 0.4);
  transform: translateY(-5px);
}

/* gallery css end */
.breadcrumb-section {
  background-color: #fff;
  /* soft beige tone to match brown theme */
  border-bottom: 2px solid #fff;
  padding: 100px 0;
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #fff;
  /* darker shade for active item */
  font-weight: 600;
}

@media (max-width: 768px) {
  .video-card iframe {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .video-card iframe {
    height: 220px;
  }
}

/* Guest house booking css */
.booking-header-banner {
  background-color: #a0522d;
  color: white;
  padding: 10px 15px;
  text-align: center;
}

.booking-alert-notice {
  background-color: #d1e7ff;
  color: #004085;
  border: none;
  padding: 15px;
  text-align: center;
}

.booking-main-container {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.booking-info-section {
  background-color: #e3f2fd;
  padding: 40px 30px;
}

.booking-info-section h3 {
  color: #1976d2;
  margin-bottom: 25px;
}

.booking-contact-item {
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-left: 4px solid #64b5f6;
}

.booking-contact-item i {
  color: #1976d2;
  margin-right: 15px;
}

.booking-note-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin-top: 30px;
}

.booking-note-box h5 {
  color: #856404;
}

.booking-form-section {
  padding: 40px 35px;
}

.booking-form-section h3 {
  color: #a0522d;
  margin-bottom: 30px;
  text-align: center;
}

.form-label {
  font-weight: 600;
  color: #333;
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  background-color: #2196f3;
  border: none;
  color: white;
  padding: 12px 40px;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 20px;
}

.btn-submit:hover {
  background-color: #1976d2;
}

@media (max-width: 992px) {
  .booking-content-wrapper {
    grid-template-columns: 1fr;
  }

  .date-row {
    grid-template-columns: 1fr;
  }
}

/* Support page */
.donation-container {
  max-width: 900px;
  margin: 0 auto;
}

.donation-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.donation-section-title {
  color: var(--primary-brown);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.donation-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-brown);
  border-radius: 2px;
}

.donation-section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 20px;
}

.donation-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(160, 82, 45, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(160, 82, 45, 0.25);
}

.card-header-custom {
  background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--primary-brown) 100%);
  color: white;
  padding: 25px;
  text-align: center;
}

.card-header-custom i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.card-header-custom h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.qr-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.qr-code-wrapper {
  display: inline-block;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-brown);
  margin-bottom: 20px;
}

.qr-code-wrapper img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
}

.upi-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-brown);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 15px;
}

.details-section {
  padding: 30px;
}

.detail-item {
  background: #f8f9fa;
  border-left: 4px solid var(--secondary-brown);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.detail-label {
  color: var(--secondary-brown);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-value {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  word-break: break-all;
}

.copy-btn {
  background: var(--primary-brown);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.copy-btn:hover {
  background: #8B4513;
  transform: scale(1.05);
}

.copy-btn i {
  margin-right: 5px;
}

.support-message {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--primary-brown) 100%);
  color: white;
  margin-top: 30px;
  border-radius: 15px;
}

.support-message h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .qr-code-wrapper img {
    max-width: 200px;
  }

  .detail-value {
    font-size: 1rem;
  }
}

.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.container-t {
  display: flex;
  min-height: 100vh;
  flex-wrap: nowrap;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.sidebar {
  width: 480px;
  background-color: #fff;
  padding: 20px;
  border-right: 1px solid #ddd;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.info-card {
  /* margin-bottom: 25px; */
  background-color: #ffffff;
  /* border: 1px solid #e6e6e6; */
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.info-card:hover {
  background-color: #654321;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.info-card:hover h3 {
  color: #fff;
}

.info-card:hover p {
  color: #fff;
}

.info-card h3 {
  font-size: 16px;
  color: #654321;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 15px;
  color: #a0522d;
}


.content {

  padding: 40px;
  overflow-y: auto;
  height: 100vh;
  scroll-behavior: smooth;
}

/*video*/
.container-t {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Sidebar and content layout */
.sidebar {
  width: 30%;
  overflow-y: auto;
}

.content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video container */
.video-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  display: block;
}

/* Description below video */
.description {
  width: 100%;
  text-align: left;
  margin-top: 10px;
}

.description p {
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Scrollbar */
.sidebar::-webkit-scrollbar,
.content::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track,
.content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb {
  background: #ffffff00;
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.content::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

/* Tablet and smaller devices */
@media (max-width: 991px) {
  .container-t {
    flex-direction: column;
  }

  .sidebar {
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .content {
    width: 100%;
    padding: 20px;
  }

  .video-wrapper iframe {
    height: 300px;
  }

  .description {
    text-align: center;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .sidebar {
    padding: 15px;
  }

  .info-card h3 {
    font-size: 14px;
  }

  .content {
    padding: 15px;
  }

  .video-wrapper iframe {
    height: 220px;
  }

  .description p {
    font-size: 14px;
    line-height: 1.6;
  }
}


/*Contuct us */

/* Banner Section */
.contactus-banner {
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contactus-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.3;
}

.contactus-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contactus-banner p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(160, 82, 45, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(160, 82, 45, 0.15);
}

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-content h5 {
  color: var(--primary-brown);
  margin-bottom: 5px;
  font-weight: 600;
}

.info-content p {
  margin: 0;
  color: #666;
}

/* Form Styling */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(160, 82, 45, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 0.2rem rgba(160, 82, 45, 0.15);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
  border: none;
  color: white;
  padding: 14px 40px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(160, 82, 45, 0.3);
  background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
}

/* Map Section */
.map-container {
  margin-top: 60px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(160, 82, 45, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-brown);
  transform: scale(1.1);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .contactus-banner h1 {
    font-size: 2rem;
  }

  .contactus-banner p {
    font-size: 1rem;
  }

  .contactus-banner {
    padding: 50px 0;
  }

  .contact-form {
    padding: 25px;
    margin-top: 30px;
  }

  .map-container iframe {
    height: 300px;
  }
}


/* event css */
/* Optional: Light gradient background for modal */
#eventModal .modal-content {
  background: linear-gradient(180deg, #fff 0%, #fdf7f2 100%);
}

/* Smooth zoom-in effect */
.modal.fade .modal-dialog {
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* feedback */
/* Floating Feedback Button */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #c2652e 0%, #8b4513 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(194, 101, 46, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(194, 101, 46, 0.5);
  background: linear-gradient(135deg, #d47335 0%, #9b5217 100%);
}

.floating-btn:active {
  transform: translateY(-1px);
}

/* Modal Customization */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feedback_m_header {
  background: linear-gradient(135deg, #c2652e 0%, #8b4513 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  border: none;
  padding: 20px 30px;
}

.feedback_m_header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.feedback_m_header .btn-close:hover {
  opacity: 1;
}

.feedbackmtitle {
  font-weight: 700;
  font-size: 24px;
}

.feedbackmbody {
  padding: 30px;
}

/* Success Alert */
.alert-success {
  border-radius: 10px;
  border: none;
  background: #d4edda;
  color: #155724;
}

/* Backdrop */
.modal-backdrop.show {
  opacity: 0.6;
  backdrop-filter: blur(4px);
}

/* Demo Content */
.demo-content {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

/* feedback details */
.feedback-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  background: var(--primary-brown);
  color: white;
  padding: 30px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feedback-card {
  background: white;
  border-left: 4px solid var(--secondary-brown);
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feedback-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
}

.feedback-header {
  background: linear-gradient(90deg, var(--light-brown) 0%, transparent 100%);
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}

.feedback-name {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 1.1rem;
}

.feedback-date {
  color: var(--text-brown);
  font-size: 0.85rem;
}

.feedback-body {
  padding: 20px;
  color: var(--text-brown);
}

.rating {
  color: var(--light-brown);
}

.badge-rating {
  background-color: var(--secondary-brown);
  padding: 5px 12px;
  border-radius: 20px;
}

.no-feedback {
  background: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 15px 15px;
  color: var(--text-brown);
}

.feedback-stats {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-brown);
}

.stat-label {
  color: var(--text-brown);
  font-size: 0.9rem;
}

/* book details*/
.badge-new {
            background-color: #28a745;
            color: white;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 3px;
        }

        .price-section {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--text-brown);
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
        }

        .discount {
            color: #28a745;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .btn-add-bag {
            border: 2px solid var(--text-brown);
            color: var(--text-brown);
            background: white;
            padding: 12px 40px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-add-bag:hover {
            background: var(--text-brown);
            color: white;
        }

        .btn-buy-now {
            background: #000;
            color: white;
            padding: 12px 40px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-buy-now:hover {
            background: #333;
        }

        .btn-emi {
            background: #000;
            color: white;
            padding: 8px 20px;
            font-size: 0.9rem;
            border: none;
        }

        .product-img {
            max-width: 100%;
            height: auto;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .book-card {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }

        .book-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .book-card img {
            max-width: 100%;
            height: 250px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .book-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-brown);
            min-height: 45px;
            margin-bottom: 8px;
        }

        .book-author {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 10px;
        }

        .book-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-brown);
        }

        .book-original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.95rem;
            margin-left: 8px;
        }

        .book-discount {
            color: #28a745;
            font-size: 0.9rem;
            margin-left: 5px;
        }

        .btn-add-small {
            border: 1px solid var(--text-brown);
            color: var(--text-brown);
            background: white;
            padding: 8px 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-add-small:hover {
            background: var(--text-brown);
            color: white;
        }

        .emi-text {
            color: #28a745;
            font-weight: 600;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--text-brown);
        }

        .share-icon {
            cursor: pointer;
            color: var(--text-brown);
        }

        .countdown {
            color: var(--secondary-brown);
            font-weight: 600;
        }