/* Overall Section */
#business-btn {
  cursor: pointer;
}
.nav-links .active {
  background: #D4AF37;
  border-radius: 5px;
}

.book-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  justify-content: space-around;
  gap: 40px;
}
.released-book-section {
  background: #f5f1eb;
  padding: 80px 20px;
  margin: 60px auto;
  border-radius: 20px;
  max-width: 1300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.released-book-section .section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
}

/* Flex Layout */


/* Image + Buy Button */
.book-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.book-cover {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.book-cover img {
  height: 350vh;
  width: 500vh;
  background-position: center;

}

/* Book Details */
.book-details {

  max-width: 800px;
  text-align: left;
}

.book-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.book-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  width: 100%;
}

/* Buttons */
.buy-btn,
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  color: #fff;
  font-size: 1rem;
  padding: 12px 30px;
  /* border-radius: 30px; */
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Different Button Colors */



.buy-btn:hover {
  background: #555;
  transform: translateY(-3px);
}

.download-btn:hover {
  background: #555;
  transform: translateY(-3px);
}


/*================ drop down============*/
.navbar {
  background: #120821;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  position: sticky;
  top: 5px;
  z-index: 10;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  display: block;
  transition: 0.3s;
}

.nav-links a:hover {
  background: #F5D98E;
  border-radius: 5px;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  color: white;
  top: 45px;
  left: 0;
  background: #1F2A38;
  min-width: 160px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}
.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown-content li a:hover {
  background: #F5D98E;
  cursor: pointer;

}

/* Show dropdown */
.dropdown.active .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger menu (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* ======================= form contents========================= */

    .download-content {
      display: flex;
      flex-wrap: wrap;
      background:  #E4E7EB;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      max-width: 1300px;
      width: 100%;
      overflow: hidden;
    }

    .download-benefits {
      flex: 1 1 350px;
      background:#120821 ;
      color: #fff;
      padding: 40px;
    }

    .download-benefits h3 {
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .download-benefits ul {
      list-style: none;
      line-height: 1.8;
    }

    .download-benefits ul li::before {
      content: "✔";
      margin-right: 10px;
      color: #ffdf5c;
    }

    .form-container {
      flex: 1 1 350px;
      padding: 40px;
    }

    .form-container form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .form-container input,
    .form-container textarea {
      padding: 12px 15px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      transition: 0.3s;
    }

    .form-container input:focus,
    .form-container textarea:focus {
      border-color: #615345;
      outline: none;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    .btn {
      border: none;
      padding: 12px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

/* ======================= BOOKS BANNER SECTION ========================= */

.books-banner {
  margin: 2rem;
  background: #1B0F2E;
  padding: 80px 20px;
  margin: 60px auto;
  border-radius: 15px;
}

.books-banner-header {
  text-align: center;
  margin-bottom: 60px;
}

.books-banner-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.books-banner-header p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 300;
}

.books-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

/* Book Card Styling */
.book-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.book-card-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #f0f0f0;
}

.book-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.book-card:hover .book-card-image img {
  transform: scale(1.05);
}

.book-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.book-card-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.book-author {
  font-size: 0.95rem;
  color: #8B7A6A;
  margin-bottom: 15px;
  font-style: italic;
}

.book-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.book-card-footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.book-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #D4AF37;
  color: #1B0F2E;

}

.btn-primary:hover {
  background: #F5D98E;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #e8e3d8;
  color: #333;
  border: 2px solid #615345;
}

.btn-secondary:hover {
  background: #615345;
  color: white;
}

