@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

body {
  font-family: "Lora", serif;
  padding: 0%;
  margin: 0%;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1f215a;
  padding: 6px 0;
}

.top-btn {
  color: #fff;
  padding: 0px 12px;
  text-decoration: none;
  font-size: 18px;
}

.iconbox img {
  width: 30px;
  margin-right: 10px;
  border-radius: 10%;
}

.iconbox a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
}



.iconbox a:hover {
  color: #f9c713;
}

/* ===== HEADER ===== */
.main-header {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo-area h4 {
  margin: 0;
  font-weight: bold;
}

.contact-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-box i {
  background-color: #a21651;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
  color: #f9c713;
}

/* ===== SEARCH ===== */
.search-box {
  display: flex;
  border: 1px solid #1f215a;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.search-box button {
  background: #1f215a;
  border: none;
  padding: 0 18px;
  color: #fff;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  border-top: 2px solid #1f215a;
}

.custom-navbar .nav-link {
  color: #1f215a;
  font-weight: 500;
  padding: 0px 15px;

}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
  color: #fff;
  background: #1f215a;
}

/* ===== EQUAL WIDTH NAVBAR ===== */
.equal-nav {
  display: flex;
}

.equal-nav .nav-item {
  flex: 1;
  text-align: center;
}

.equal-nav .nav-link {
  width: 100%;
  padding: 10px 5px;
}


/* ================= HOVER DROPDOWN ================= */
.hover-dropdown .dropdown-menu {
  display: none;
  margin-top: 0;
  border-radius: 0;
  border: 1px solid #ccc;
}

.hover-dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items style */
.dropdown-menu .dropdown-item {
  padding: 10px 15px;
  font-size: 18px;
  color: #001f5c;
}

.dropdown-menu .dropdown-item:hover {
  background: #f2f2f2;
  color: #000;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  height: 600px;
  background: url("../images/hero.png") bottom/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-content h3 {
  font-size: 26px;
  margin-top: 15px;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* ================= COLORS ================= */
.red {
  color: #ff4d4d;
  font-weight: 800;
}

.blue {
  color: #00d2ff;
  font-weight: 700;
}

.first-letter-red {
  color: #ff0000 !important;
}

.first-letter-blue {
  color: #007bff !important;
}


.tagline {
  font-style: italic;
  font-weight: 700;
  border-bottom: 3px solid #f9c713;
  width: fit-content;
  padding-bottom: 8px;
  margin: 0 auto;
  color: #a21651;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 2px solid #0d6efd;
  width: fit-content;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
}

.h2line {
  border-bottom: 2px solid #0d6efd;
  width: fit-content;
  margin: 10px auto;
  padding-bottom: 10px;
  font-weight: bold;
}



@media (max-width: 991px) {
  .top-bar .row {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .top-bar .iconbox {
    flex: 1;
    /* occupy left space */
    justify-content: flex-start;
  }

  .top-bar .top-btn {
    margin-left: auto;
    /* push right button to far right */
  }



  .main-header {
    padding: 10px 0;
  }

  .logo-area img {
    max-width: 90px;
  }

  .navbar-toggler {
    padding: 4px 8px;
    font-size: 1.1rem;
    border: 1px solid #1f215a !important;
  }

  .search-box-original {
    margin-top: 15px;
  }

  .equal-nav {
    flex-direction: column;
  }

  .equal-nav .nav-link {
    text-align: left !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 20px 0;
}

.about-section p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 18px;
  text-align: justify;
}

.about-title {
  font-weight: 700;
  margin: 35px 0 15px;
  font-size: 18px;
  color: #000;
}



/* =========  ========= */







.subject-block {
  padding: 20px 20px;
  border-radius: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.subject-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.subject-block a {
  text-decoration: none;
  color: #fff;
}

.green-bg {
  background-color: #28a745;
}

.teal-bg {
  background-color: #20c997;
}

.gray-bg {
  background-color: #6c757d;
}

.blue-bg {
  background-color: #007bff;
}

.orange-bg {
  background-color: #fd7e14;
}

.purple-bg {
  background-color: #6f42c1;
}

.red-bg {
  background-color: #dc3545;
}

.yellow-bg {
  background-color: #ffc107;
  color: #000;
}

.pink-bg {
  background-color: #e83e8c;
}

.brown-bg {
  background-color: #8B4513;
}


/* ===== SERVICES SLIDER ===== */
.servicebox {
  background-color: #fcfcfc;
  padding: 80px 0;
}

.service-card {
  padding: 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #1f215a;
}

.service-card img {
  height: 120px !important;
  width: auto;
  margin-bottom: 25px;
  /* filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1)); */
  transition: all 0.4s ease;
  object-fit: contain;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: #1f215a;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}



/* Carousel arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #1f215a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}



/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  background-color: #ffffff;
  padding: 100px 0;
}

.why-choose-us .tagline {
  font-style: italic;
  font-weight: 700;
  border-bottom: 3px solid #f9c713;
  width: fit-content;
  padding-bottom: 8px;
  margin: 0 auto;
  color: #a21651;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 2px solid #0d6efd;
  width: fit-content;
  padding-bottom: 10px;
  margin: 0 auto;
}



.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a21651;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.choose-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-card i {
  font-size: 36px;
  color: #a21651;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.4s ease;
}

.choose-card:hover i {
  transform: scale(1.2);
  color: #1f215a;
}

.choose-card-content h5 {
  color: #1f215a;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.choose-card-content p {
  font-size: 13.5px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.why-choose-features-card {
  border-radius: 24px;
  padding: 25px 30px;
  box-shadow: 0 20px 50px rgba(31, 33, 90, 0.08);
  border: 1px solid rgba(31, 33, 90, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;

}

.choose-list-item {
  display: flex;
  gap: 20px;
  border-radius: 12px;
  display: flex;
  padding: 10px 15px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
}

.choose-list-item:last-child {
  margin-bottom: 0;
}

.choose-list-item:hover {
  background: #fcfcfc;
  transform: translateX(10px);
  border-color: rgba(162, 22, 81, 0.1);
}

.choose-list-item i {
  font-size: 24px;
  color: #a21651;
}

.choose-list-item-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}

.choose-list-item-content strong {
  color: #1f215a;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

/* ================= TEAM SECTION ================= */
.team-section {
  background-color: #ebf4ff;
  padding: 80px 0;
}

.team-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1);
  border: none;
}

.team-image-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  border: none;
}

.team-image-wrapper:hover img {
  transform: scale(1.05);
}



/* ================= SPECIALIZED SERVICES ================= */
.specialized-services {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.specialized-services .container {
  position: relative;
  z-index: 2;
}

.specialized-services .section-header {
  margin-bottom: 70px;
}

.specialized-services .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1f215a;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 25px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.specialized-services .section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #a21651, #f9c713);
  border-radius: 2px;
}

.specialized-services .section-header p {
  color: #555;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.text-justify {
  text-align: justify;
}

.publication-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(31, 33, 90, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(31, 33, 90, 0.03);
  position: relative;
  z-index: 1;
}

.publication-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #1f215a, #a21651);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.publication-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(31, 33, 90, 0.12);
}

.publication-card:hover::after {
  opacity: 1;
}


.publication-card:hover .card-icon {
  justify-content: center;
  background: #a21651;
  color: #fff;
  transform: rotateY(360deg);
  box-shadow: 0 12px 25px rgba(162, 22, 81, 0.25);
}


.publication-card h4 {
  color: #1f215a;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.2px;
}





.btn-professional:hover {
  background: linear-gradient(135deg, #a21651 0%, #f9c713 100%);
  color: #fff !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(162, 22, 81, 0.3);
}

@media (max-width: 991px) {
  .publication-card {
    padding: 40px 25px;
  }
}


/* ================= FOOTER ================= */
.main-footer {
  position: relative;
  background: url("../images/FooterImage.png") center/cover no-repeat;
  color: #fff;
  padding: 80px 0 30px;
  text-align: center;
}



.footer-overlay {
  position: absolute;
  inset: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 8px;
}

.footer-logo h5 {
  margin-bottom: 15px;
  font-weight: 700;
}

.main-footer p {
  font-size: 18px;
  line-height: 1.6;
}

.footer-title {
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: #a21651;
  transition: width 0.3s ease;
}

.footer-title:hover::after {
  width: 100%;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #ff4d4d;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ff4d4d;
  transform: translateX(8px) scale(1.05);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 13px;
}


/* ================= INNER HERO ================= */
.inner-hero {
  position: relative;
  height: 320px;
  background: url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-hero-content h1 {
  font-size: 34px;
  font-weight: 700;
}

.inner-hero-content h3 {
  font-size: 22px;
  margin-top: 10px;
  font-style: italic;
}


/* ================= BELOW CONTENT ================= */
.info-line {
  font-size: 18px;
  font-weight: 500;
}

.page-tagline {
  display: inline-block;
  font-style: italic;
  padding-bottom: 6px;
  border-bottom: 2px solid #0d6efd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .inner-hero {
    height: 240px;
  }

  .inner-hero-content h1 {
    font-size: 24px;
  }

  .inner-hero-content h3 {
    font-size: 18px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .submission-hero {
    height: 200px;
  }

  .submission-hero h1 {
    font-size: 24px;
  }

  .book-title {
    font-size: 17px;
  }

  .editor-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .editor-details {
    min-width: 100%;
  }

  .service-card img {
    height: 120px;
  }

  .book-text {
    margin-bottom: 25px;
  }
}


/* ================= PUBLISH PAGE ================= */
.page-title {
  font-weight: 700;
  text-align: center;
}

.page-subtitle {
  text-align: center;
  font-style: italic;
  padding-bottom: 6px;
  margin-bottom: 25px;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
}

/* Content */
.publish-section p {
  font-size: 13.5px;
  line-height: 1.8;
  text-align: justify;
}

.publish-list {
  margin-top: 20px;
}

.publish-list li {
  margin-bottom: 12px;
  font-size: 13.5px;
}

.publish-list a {
  color: #0d6efd;
  text-decoration: none;
}

/* Dotted line */
.dotted-line {
  border-top: 2px dotted #000;
  margin: 25px 0;
}

/* Buttons */
.action-buttons {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

.action-buttons .btn {
  background: #001f5c;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
}

/* Sidebar */
.side-menu {
  border: 1px solid #000;
}

.side-menu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #000;
  color: #001f5c;
  background-color: #f3f7ff;
  text-decoration: none;
  font-size: 18px;
}

.side-menu a:hover {
  background-color: #042871;
  color: #fff;
}

.side-menu a:last-child {
  border-bottom: none;
}

.side-menu a.active {
  font-weight: 700;
  background-color: #0b095c;
  color: #fff;
}

.activebtnlink {
  animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
  0% {
    color: #036fab;
  }

  50% {
    color: #fa2055;
  }

  100% {
    color: #facb10;
  }
}

.side-menu span {
  color: red;
  font-size: 12px;
}

/* ===================== Book Page ==================== */
.imgcss {
  height: 300px !important;
  padding: 10px 15px;
}


/* ================= CHAPTER OPEN SECTION ================= */
.chapter-open-section {}

.section-heading h3 {
  color: red;
  font-weight: 700;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
}

/* Subject block */
.subject-block {
  margin-bottom: 40px;
}

.subject-block h5 {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Book list */
.book-list {
  list-style: none;
  padding-left: 0;
}

.book-list li:hover {
  background-color: #f0f0f0;
  transition: 1s;
}

.book-list li {
  position: relative;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #ededed;
}

.book-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #363636;
  text-decoration: none;
  font-size: 10px;
}

.book-list a {
  color: #363636;
  text-decoration: none;
  font-size: 18px;
}

.book-list a:hover {
  text-decoration: none;
}


/* ================= SUBMISSION HERO ================= */
.submission-hero {
  position: relative;
  height: 260px;
  background: url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.submission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.submission-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
}

/* ================= COLORS ================= */
.red {
  color: red;
}

/* ================= INFO LINE ================= */
.info-line {
  font-size: 18px;
  font-weight: 500;
}

/* ================= PAGE TITLE ================= */
.submission-title h2 {
  font-weight: 700;
}

.middle-text {
  font-weight: 700;
  margin: 10px 0;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 4px;
}

.book-title {
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  line-height: 1.5;
}


/* ================= CHAPTER INFO ================= */
.chapter-info-section {}

.red {
  color: red;
}

/* Title */
.middle-text {
  display: inline-block;
  font-weight: 700;
  margin: 8px 0;
  border-bottom: 2px solid #0d6efd;
}



/* Editor */
.editor-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

.editor-box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.editor-photo {
  width: 90px;
  height: 90px;
  border: 1px solid #000;
  display: flex;
  align-items: center;

}

.editor-photo i {
  font-size: 40px;
}

.editor-details {
  border: 1px solid #000;
  padding: 12px;
  min-width: 260px;
  font-size: 18px;
}



.deadline-text {
  margin-top: 10px;
  font-weight: 700;
}

.deadline-text span {
  color: red;
}















/* ================= BOOK DETAILS ================= */
.book-details-page {
  background: #e0e0e0;
  border: 1px solid #ededed;
}

.book-details-section {}


/* Headings */
.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.small-title {
  font-weight: 700;
  margin-bottom: 5px;
}

/* Text */
.book-text {
  font-size: 18px;
  line-height: 1.9;
}

/* Links */
.link-blue {
  color: #007bff;
  text-decoration: none;
}

.link-blue:hover {
  text-decoration: underline;
}

/* Submit section */
.submit-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-text {
  margin-top: 15px;
  font-size: 18px;
}


/* ================= INNER HERO COMMON ================= */
.inner-hero {
  position: relative;
  height: 300px;
  background: url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
}

.inner-hero-content h3 {
  font-size: 22px;
  margin-top: 10px;
  font-style: italic;
}

/* ================= COLORS ================= */
.red {
  color: red;
}


/* ================= INFO LINE ================= */
.info-line {
  font-size: 18px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .inner-hero {
    height: 220px;
  }

  .inner-hero-content h1 {
    font-size: 24px;
  }

  .inner-hero-content h3 {
    font-size: 18px;
  }
}


/* ================= JOURNALS ================= */
.section-title {
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
}

.red {
  color: red;
}

/* Card */
.journal-card {
  border: 1px solid #ccc;
  padding: 10px 15px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 30px 40px 100px #0000001e;
}

.journal-img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.journal-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.journal-card p {
  font-size: 18px;
  margin-bottom: 6px;
}

/* Button */
.btn-pp {
  background: transparent;
  color: #fff;
  padding: 12px 35px;
  font-size: 18px;
  border-radius: 50px;
  border: 2px solid #a21651;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(162, 22, 81, 0.2);
  letter-spacing: 0.5px;
}

.btn-pp:hover {
  background: #a21651;
  color: #fff;
  box-shadow: 0 8px 25px rgba(162, 22, 81, 0.4);
  transform: translateY(-4px) scale(1.02);
}



/* Responsive */
@media (max-width: 768px) {
  .journal-img {
    height: auto;
  }
}



/* contact page */

/* ================= CONTACT PAGE ================= */
.contact-intro {
  font-size: 18px;
}

/* Form */
.contact-form .form-control {
  border-radius: 0;
  font-size: 18px;
}

.btn-submit {
  /* background: linear-gradient(135deg, #28a745 0%, #20c997 100%); */
  background: #28a745;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-submit:hover {
  /* background: linear-gradient(135deg, #218838 0%, #17a67f 100%); */
  background: #28a745;
  color: #fff;
  /* box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5); */
  transform: translateY(-4px) scale(1.02);
}

/* Right side text */
.contact-section p {
  font-size: 18px;
  line-height: 1.7;
}




/* ================= PUBLISH OWN BOOK ================= */
.page-title {
  font-weight: 700;
}

.page-subtitle {
  display: inline-block;
  font-style: italic;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 5px;
  margin-top: 5px;
}

.red {
  color: red;
}

/* Content */
.publish-own-book-section p {
  font-size: 13.5px;
  line-height: 1.8;
  text-align: justify;
}

.content-heading {
  font-weight: 700;
  margin-top: 25px;
}

.publish-list {
  margin-top: 15px;
}

.publish-list li {
  margin-bottom: 8px;
  font-size: 13.5px;
}

/* Buttons */
.action-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-submit-book {
  background: #001f5c;
  color: #fff;
  padding: 10px 35px;
  border-radius: 0;
  font-weight: 600;
}

.btn-submit-book:hover {
  background: #003399;
  color: #fff;
}

/* Sidebar */
.side-menu {
  border: 1px solid #000;
}

.side-menu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #000;
  text-decoration: none;
  color: #001f5c;
  font-size: 18px;
}

.side-menu a:last-child {
  border-bottom: none;
}

.side-menu a.active {
  font-weight: 700;
}

.side-menu span {
  color: red;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }
}





.slider-btn.left {
  margin-right: 10px;
}

.slider-btn.right {
  margin-left: 10px;
}

.slider-btn:hover {
  opacity: 1;
}

/* ================= END BOOK STORE ================= */

/*  */
.buy-btn {
  background: #0b2c6d;
  color: #fff;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
}

/* Light overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 998;
}

/* SMALL CARD */
#orderCard {
  position: fixed;
  top: 80px;
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¹ not full height */
  right: -420px;
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¹ hidden initially */
  width: 400px;
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¹ SMALL CARD */
  background-image: url(../images/hero.png);
  padding: 28px;
  border-radius: 12px;
  box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.25);
  transition: right 0.35s ease;
  z-index: 999;
}

/* Active */
#orderCard.active {
  right: 20px;
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¹ slight gap from edge */
}

.bookcard {
  background-color: #ffffff8b;
  padding: 30px;
}

.bookcardbox {
  padding: 10px;
  background-color: #fff;
}

.card-title {
  text-align: center;
  margin-bottom: 8px;
}

/* Buttons */
.complete-btn {
  width: 100%;
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 8px;
  margin-bottom: 8px;
}

.info-text {
  font-size: 13px;
  margin-bottom: 8px;
}

/* Contact box */
.contact {
  display: flex;
  justify-content: space-between;
  background: #f1f1f1;
  padding: 6px;
  margin-bottom: 6px;
  border-radius: 6px;
  font-size: 13px;
}

.contact button {
  background: #0d6efd;
  color: #fff;
  border: none;
  font-size: 11px;
  padding: 2px 6px;
}

/* Actions */
.actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cancel,
.confirm {
  flex: 1;
  border: none;
  padding: 6px;
  font-size: 13px;
  border-radius: 7px;
}

.cancel {
  background: #ccc;
}

.confirm {
  background: #28a745;
  color: #fff;
}

/*  */
/* ================= ABOUT PAGE ================= */
.about-title {
  font-weight: 700;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 6px;
}

.about-subtitle {
  font-style: italic;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 5px;
  margin-top: 5px;
}

.red {
  color: red;
}

/* Blocks */
.about-block {
  margin-bottom: 30px;
  text-align: justify;
}

.block-title {
  font-weight: 700;
  margin-bottom: 8px;
}

/* Text */
.about-section p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* Lists */
.about-list {
  list-style: square;
  padding-left: 20px;
}

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.about-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a21651;
  position: absolute;
  left: 0;
  top: 2px;
}

.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.values-list li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a21651;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
}


/* ================= POLICY PAGES ================= */
.policy-title {
  font-weight: 700;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 6px;
}

.red {
  color: red;
}

/* Blocks */
.policy-block {
  margin-bottom: 30px;
}

.policy-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

/* Text */
.policy-section p {
  line-height: 1.8;
  text-align: justify;
}

/* Links */
.policy-section a {
  color: #0d6efd;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-section ul li {
  text-align: justify;
}

/* Lists */
.policy-list {
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 8px;
  text-align: justify;

}


/* ================= TERMS & CONDITIONS ================= */
.terms-title {
  font-weight: 700;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 6px;
}

/* Text */
.terms-section p {
  line-height: 1.8;
  text-align: justify;
}

/* Headings */
.terms-heading {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 8px;
}

/* Lists */
.terms-list {
  padding-left: 20px;
  text-align: justify;
}

.terms-list li {
  margin-bottom: 8px;
  text-align: justify;
}

/* Roman list */
.terms-roman {
  padding-left: 20px;
  text-align: justify;
}

.terms-roman li {
  margin-bottom: 12px;
  text-align: justify;
}

/* Divider */
/* ================= HOW TO SUBMIT SECTION ================= */
.how-to-submit-section {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 40px;
  margin: 50px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.how-to-submit-section h3 {
  color: #1f215a;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-card {
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 4px solid #f8f9fa;
  overflow: hidden;
}

.step-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.step-card h6 {
  color: #a21651;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ================= COLORFUL INFO CARDS ================= */
.info-card-colorful {
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-card-colorful:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;

  min-width: 65px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 2px;
}

.info-card-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.info-card-content h5 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
  text-transform: uppercase;
}

.info-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}

/* Specific Card Colors */
.card-blue {
  background-color: #85daeb;
}

.card-green {
  background-color: #a3d99e;
}

.card-orange {
  background-color: #f9b47e;
}

.card-yellow {
  background-color: #fde08a;
}

.card-purple {
  background-color: #c3b4e6;
}

.card-red {
  background-color: #fcfcfc;
}

.terms-section hr {
  margin: 30px 0;
}


/* ================= slide buy book ================= */
/* OVERLAY */
.buy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}

/* PANEL */
.buy-panel {
  position: fixed;
  top: 0;
  right: -420px;
  /* hidden */
  width: 400px;
  height: 100%;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

/* ACTIVE STATES */
.buy-panel.active {
  right: 0;
}

.buy-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.buy-panel-header {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* BODY */
.buy-panel-body {
  padding: 10px 15px;
  overflow-y: auto;
}


/* Call to chapter */
.call-chapter-section {
  background: #f3f5f7;
}

.chapter-card {
  max-width: 1100px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Left side */
.badge-call {
  width: 100%;
  display: inline-block;
  background-color: #1F215A;
  color: #fff;
  padding: 6px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 21px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.editorrequired {
  font-weight: bold;

  animation: editorrequir 1s infinite;
}

@keyframes editorrequir {
  0% {
    color: red;
  }

  50% {
    color: white;
  }

  100% {
    color: red;
  }
}

.book-cover img {
  width: 100%;

  border-radius: 12px;
}

.deadline-box {
  display: flex;
  align-items: center;
  gap: 15px;

}

.date-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2;
  padding-top: 10px;
}

.date-circle span {
  font-size: 12px;
  display: block;
}

.date-circle strong {
  font-size: 20px;
}



.editor-section p {
  margin-bottom: 6px;
}

.action-buttons .btn {
  padding: 10px;
  font-weight: 600;
}

.contact-info {
  font-size: 14px;
}


/* ================= PUBLISH HIGHLIGHT CARDS ================= */
.publish-highlight-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.publish-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1f215a, #a21651);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.publish-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #1f215a;
}

.publish-highlight-card:hover::before {
  transform: scaleX(1);
}

.publish-highlight-card .card-icon-box {
  width: 90px;
  height: 90px;
  background: #f8f9fa;
  color: #1f215a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.03);
}

.publish-highlight-card:hover .card-icon-box {
  background: #1f215a;
  color: #f9c713;
  transform: rotateY(360deg);
}

.publish-highlight-card h5 {
  color: #1f215a;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.publish-highlight-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Submission CTA Card */
.submission-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  border: 2px dashed #a21651;
}

.submission-cta-card p {
  text-align: center !important;
}

.submission-cta-card .card-icon-box {
  animation: pulse 2s infinite;
}

.btn-premium {
  background: #1f215a;
  color: #f9c713 !important;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 33, 90, 0.2);
}

.btn-premium:hover {
  background: #a21651;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(162, 22, 81, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(162, 22, 81, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(162, 22, 81, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(162, 22, 81, 0);
  }
}


/* ================= HORIZONTAL PROCESS STEPS ================= */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h3 {
  font-size: 42px;
  font-weight: 800;
  color: #1f215a;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.process-intro {
  text-align: center;
  margin-bottom: 40px;
}

.process-intro h5 {
  color: #1f215a;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-intro p {
  color: #444;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-card {
  background: #fff;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(31, 33, 90, 0.05);
  margin-bottom: 30px;
  height: calc(100% - 30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.process-step-card:hover {
  transform: translateY(-5px);
}

.step-indicator {
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  padding: 20px;
}

.step-indicator h2 {
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-indicator i {
  font-size: 40px;
}

.step-content {
  flex: 2;
  display: flex;
  flex-direction: column;

}

.step-content h6 {
  color: #1f215a;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.step-content p {
  color: #555;
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
  margin: 0;
}

.step-content ul {
  padding-left: 18px;
  margin-top: 10px;
}

.step-content li {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

/* Step Colors */
.step-navy {
  background-color: #1f215a;
}

.step-green {
  background-color: #26b99a;
}

.step-orange {
  background-color: #f39c12;
}

.step-black {
  background-color: #000;
}

.step-purple {
  background-color: #6a1b9a;
}

.step-cyan {
  background-color: #00bcd4;
}

/* ================= BOOK PUBLICATION PROCESS (Pills) ================= */
.process-pills-section {
  background-color: #f2f2f2;
  padding: 80px 0;
}

.process-pills-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.process-pill {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 10px;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100px;
  width: 85%;
}

.process-pill:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Alternating directions */
.pill-right {
  align-self: flex-start;
  flex-direction: row;
  padding-right: 30px;
  text-align: left;
}

.pill-left {
  align-self: flex-end;
  flex-direction: row-reverse;
  padding-left: 30px;
  text-align: left !important;
}

.pill-number-circle {
  width: 75px !important;
  height: 75px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  margin: 5px 15px !important;
}

.pill-text {
  flex: 1;
  padding: 0 30px;
}

.pill-text h4 {
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 19px;
}

.pill-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

/* Step Colors */
.pill-step-1 {
  background-color: #0094da;
}

.pill-step-2 {
  background-color: #ed1c24;
}

.pill-step-3 {
  background-color: #b58900;
}

.pill-step-4 {
  background-color: #6f2b91;
}

.pill-step-5 {
  background-color: #002147;
}

.pill-step-6 {
  background-color: #00a651;
}

@media (max-width: 768px) {
  .process-pill {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    border-radius: 20px !important;
    /* More square-ish for stacked content */
    padding: 20px !important;
    color: #fff;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100% !important;
    text-align: center !important;
  }

  .pill-number-circle {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    margin: 0 auto 15px auto !important;
    /* Center with bottom spacing */
  }

  .pill-text {
    padding: 0 !important;
  }

  .pill-text h4 {
    font-size: 18px !important;
  }
}

/* ================= STRATEGIC PUBLICATION PACKAGES ================= */
.pricing-header-bar {
  background-color: #3366cc;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  width: 100%;
}

.pricing-title-green {
  color: #a21651;
  font-style: italic;
  font-weight: 800;
  margin: 30px 0 15px;
  text-align: center;
  font-size: 28px;
}

.pricing-desc {
  color: #333;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 30px;
}

.category-red {
  color: #cc0000;
  font-weight: 800;
}

/* Hexagon Badge */
.hexagon-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.hexagon-badge {
  background-color: #002147;
  color: #fff;
  padding: 15px 40px;
  clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.hexagon-badge span {
  display: block;
  font-size: 18px;
}

.hexagon-badge small {
  font-weight: 400;
  font-size: 14px;
}

/* Pricing Cards */
.publication-package-card {
  border-width: 2px;
  border-style: solid;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.publication-package-card:hover {
  transform: translateY(-10px);
}

.package-header {
  padding: 25px 15px;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 28px;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}

.package-body {
  padding: 30px 20px;
  text-align: center;
  flex-grow: 1;
}

.package-pages {
  font-weight: 800;
  font-size: 22px;
  color: #111;
}

.package-services-title {
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 20px;
}

.package-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 20px;
  text-align: left;
}

.package-features-list li {
  margin-bottom: 8px;
  font-size: 13.5px;
  position: relative;
  padding-left: 25px;
}

.package-features-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* Pricing Buttons */
.price-btn {
  border-radius: 50px;
  padding: 12px 25px;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Specific Tiers */
.tier-basic {
  border-color: #5b9bd5;
}

.tier-basic .package-header {
  background-color: #5b9bd5;
}

.tier-basic .price-btn {
  background-color: #5b9bd5;
}

.tier-basic .package-features-list li::before {
  color: #5b9bd5;
}

.tier-standard {
  border-color: #a9d18e;
}

.tier-standard .package-header {
  background-color: #a9d18e;
}

.tier-standard .price-btn {
  background-color: #a9d18e;
}

.tier-standard .package-features-list li::before {
  color: #55a630;
}

.tier-premium {
  border-color: #ed7d31;
}

.tier-premium .package-header {
  background-color: #ed7d31;
}

.tier-premium .price-btn {
  background-color: #ed7d31;
}

.tier-premium .package-features-list li::before {
  color: #ed7d31;
}

/* ================= STRATEGIC PUBLICATION PACKAGES ================= */
.pricing-header-bar {
  background-color: #3366cc;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  width: 100%;
}

.pricing-desc {
  color: #333;
  font-size: 14px;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 30px;
}

.category-red {
  color: #cc0000;
  font-weight: 800;
}

/* Hexagon Badge */
.hexagon-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.hexagon-badge {
  background-color: #002147;
  color: #fff;
  padding: 15px 40px;
  clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.hexagon-badge span {
  display: block;
  font-size: 18px;
}

.hexagon-badge small {
  font-weight: 400;
  font-size: 14px;
}

/* Pricing Cards */
.publication-package-card {
  border-width: 2px;
  border-style: solid;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.publication-package-card:hover {
  transform: translateY(-10px);
}

.package-header {
  padding: 25px 15px;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 28px;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}

.package-body {
  padding: 30px 20px;
  text-align: center;
  flex-grow: 1;
}

.package-pages {
  font-weight: 800;
  font-size: 22px;
  color: #111;
}

.package-services-title {
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 20px;
}

.package-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 20px;
  text-align: left;
}

.package-features-list li {
  margin-bottom: 8px;
  font-size: 13.5px;
  position: relative;
  padding-left: 25px;
}

.package-features-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* Pricing Buttons */
.price-btn {
  border-radius: 50px;
  padding: 12px 25px;
  color: #680000 !important;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Specific Tiers */
.tier-basic {
  border-color: #5b9bd5;
}

.tier-basic .package-header {
  background-color: #5b9bd5;
}

.tier-basic .price-btn {
  background-color: #5b9bd5;
}

.tier-basic .package-features-list li::before {
  color: #5b9bd5;
}

.tier-standard {
  border-color: #a9d18e;
}

.tier-standard .package-header {
  background-color: #a9d18e;
}

.tier-standard .price-btn {
  background-color: #a9d18e;
}

.tier-standard .package-features-list li::before {
  color: #55a630;
}

.tier-premium {
  border-color: #ed7d31;
}

.tier-premium .package-header {
  background-color: #ed7d31;
}

.tier-premium .price-btn {
  background-color: #ed7d31;
}

.tier-premium .package-features-list li::before {
  color: #ed7d31;
}

/* ================= WHY AUTHORS CHOOSE SECTION ================= */
.authors-choose-section {
  padding: 100px 0;
  background-color: #fff;
}

.authors-choose-heading {
  color: #1f215a;
  font-weight: 800;
  margin-bottom: 60px;
  font-size: 42px;
  text-align: center;
}

.choice-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.choice-item:hover {
  background: #f8f9fa;
  transform: translateX(10px);
}

.choice-icon-box {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  color: #a21651;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.choice-item h6 {
  font-weight: 800;
  margin-bottom: 5px;
  color: #111;
  font-size: 18px;
}

.choice-item p {
  font-size: 13.5px;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: justify;
}



.partner-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.partner-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(162, 22, 81, 0.12);
  border-color: rgba(162, 22, 81, 0.2);
}

.partner-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(162, 22, 81, 0.05);
  color: #a21651;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  transition: all 0.4s ease;
}

.partner-feature-card:hover .partner-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(162, 22, 81, 0.05);
  color: #a21651;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  transition: all 0.4s ease;
}

.partner-feature-card h4 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
  color: #000;
}

.partner-feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  color: #444;
  margin-bottom: 0;
}

/* ================= BOXED HEADING ================= */
.boxed-heading {
  border-top: 2px solid #1f215a;
  border-bottom: 2px solid #1f215a;
  padding: 15px 40px;
  display: inline-block;
  margin: 0 auto 15px;
}

.boxed-heading h3 {
  margin: 0;
  font-weight: 800;
  color: #a21651;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  font-style: italic;
  max-width: 850px;
  margin: 0 auto 40px;
}

/* Premium Layout Helpers for Full-Width Pages */
.h2line-premium {
  position: relative;
  font-weight: 800;
  color: #1f215a;
  margin-bottom: 25px;
  display: inline-block;
  padding-bottom: 15px;
  text-align: center;
}

.h2line-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 4px;
  background: linear-gradient(90deg, #1f215a, #a21651);
  border-radius: 2px;
}

.premium-section-bg {
  background-color: #f8faff;
  border-top: 1px solid #e1e8f0;
  border-bottom: 1px solid #e1e8f0;
}

.intro-lead {
  font-size: 19px;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 500;
  max-width: 950px;
  margin: 0 auto;
}

.details-card-luxury {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);

  transition: transform 0.3s ease;
}

.details-card-luxury:hover {
  transform: translateY(-5px);
}

/* ================= SPECIALIZED SERVICES ================= */
.specialized-services {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.publication-card .card-icon {
  justify-content: center;
  width: 85px;
  height: 85px;
  background: #1f215a;
  color: #f9c713;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 36px;
  margin: 0 auto 30px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(31, 33, 90, 0.15);
}



.publication-card p {
  color: #5d6167;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
  text-align: justify;
}

.btn-professional {
  position: relative;
  z-index: 5;
  background: #1f215a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 15px rgba(31, 33, 90, 0.2);
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-features-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.professional-team-card {
  display: flex;
  gap: 15px;
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
}

.professional-team-card:last-child {
  margin-bottom: 0;
}

.professional-team-card:hover {
  background: #fcfcfc;
  transform: translateX(10px);
  border-color: rgba(31, 33, 90, 0.1);
}

.professional-team-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.professional-team-card:hover img {
  transform: scale(1.1);
}

.professional-team-card strong {
  color: #1f215a;
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

.professional-team-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #555;
}

/* ================= BOOK CARD PREMIUM ================= */
.book-card-premium {
  background: #fff;
  border-radius: px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin: 15px 10px;
  position: relative;
  overflow: hidden;
}

.book-card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(162, 22, 81, 0.12);
  border-color: rgba(0, 0, 0, 0.03);
}

.book-card-premium img {
  /* border-radius: 12px; */
  width: 100%;
  height: auto;
  max-height: 400px;
  /* Optional: to prevent it from being too tall */
  object-fit: contain;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.book-card-premium:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .book-card-premium img {
    height: auto;
    max-height: 450px;
  }
}

.new-published-books {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

.bookSwiper {
  padding: 0 40px;
}

.bookSwiper .swiper-button-next,
.bookSwiper .swiper-button-prev {
  z-index: 10;
  color: #a21651;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.bookSwiper .swiper-button-next {
  right: 0;
}

.bookSwiper .swiper-button-prev {
  left: 0;
}

.bookSwiper .swiper-pagination {
  bottom: -5px;
}





.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #1f215a;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

  z-index: 2;
  box-shadow: 0 15px 35px rgba(31, 33, 90, 0.3);
  border: 3px solid #f9c713;
  min-width: 140px;
}

.experience-badge .number {
  font-size: 36px;
  font-weight: 900;
  color: #f9c713;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

.choose-card {
  background: #fcfcfc;
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a21651;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.choose-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.choose-card:hover::before {
  transform: scaleX(1);
}










/* ================= GLOBALIZE CTA SECTION ================= */
.globalize-cta-section {
  padding: 80px 0;
  /* background: #F52356; */
  background-color: #FAC91B;
  color: #000000;
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 10;
  border-top: 4px solid #f9c713;
}

.globalize-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.globalize-cta-section p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-globalize-submit {
  background: #f70303;
  color: #fff;
  padding: 18px 50px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
  font-size: 18px;
  min-width: 280px;
}

.btn-globalize-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 208, 255, 0.4);
}

.globalize-dropdown {
  position: relative;
  display: inline-block;
}

.btn-globalize-explore-pill {
  background: #002060;
  color: #fff;
  padding: 18px 50px;
  border-radius: 60px;
  font-weight: 700;
  border: 3px solid #00d0ff;
  transition: all 0.3s ease;
  font-size: 18px;
  min-width: 280px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.btn-globalize-explore-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 208, 255, 0.4);
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  padding-top: 15px;
}

.globalize-dropdown:hover .dropdown-menu-custom {
  display: flex;
}

.sub-pill-dropdown {
  background: #fff;
  color: #002060;
  padding: 14px 40px;
  border-radius: 60px;
  font-weight: 700;
  border: 2px solid #00d0ff;
  transition: all 0.3s ease;
  font-size: 16px;
  min-width: 280px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
}

.sub-pill-dropdown:hover {
  background: #00d0ff;
  color: #fff;
  transform: scale(1.05);
}

/* ================= E-BOOK PAGE STYLES ================= */
.welcome-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.welcome-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.ebook-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ebook-card:hover {
  border-color: #660000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(31, 33, 90, 0.1);
}

.book-cover-container {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fdfdfd;
}

.book-cover {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  display: block;
}

.ebook-card:hover .book-cover {
  transform: scale(1.1);
}

/* Whitening Animation */
@keyframes whiteningGlow {
  0% {
    filter: brightness(1) contrast(1);
  }

  50% {
    filter: brightness(1.15) contrast(1.05);
  }

  100% {
    filter: brightness(1) contrast(1);
  }
}

.ebook-card:hover .book-cover-container,
.ebook-card:hover .btn-read-book {
  animation: whiteningGlow 2s ease-in-out infinite;
}

.btn-read-book {
  background: #1f215a;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-read-book:hover {
  background: #a21651;
  color: #fff;
  box-shadow: 0 5px 15px rgba(162, 22, 81, 0.3);
}

.book-title-text {
  color: #1f215a;
  font-weight: 700;
  line-height: 1.4;
  font-size: 19px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}


.detail-item {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.detail-item strong {
  color: #1f215a;
}

.top-action-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
  padding: 5px 5px 5px -15px;
}

.access-icon,
.share-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #1f215a;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.access-icon i {
  color: #28a745;
  font-size: 10px;
}

.access-icon:hover,
.share-icon:hover {
  background: #1f215a;
  color: #fff;
  border-color: #1f215a;
}

.access-icon:hover i {
  color: #fff;
}

/* Share Dropdown */
.share-dropdown {
  position: relative;
}

.share-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 10;
  min-width: 150px;
  display: none;
  border: 1px solid #eee;
}

.share-dropdown:hover .share-menu {
  display: block;
}

.share-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.share-menu a:hover {
  background: #f8f9fa;
  color: #a21651;
}

.share-menu i {
  margin-right: 8px;
  width: 16px;
}

.bottom-stats-row {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.stat-item {
  font-size: 13px;
  color: #666;
}

.stat-label {
  font-weight: 500;
}

.stat-value {
  font-weight: 700;
  color: #1f215a;
}

.like-container {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.like-container:hover {
  transform: scale(1.1);
}

.like-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #a21651;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 20px;
  text-align: center;
}

.like-btn-icon {
  font-size: 22px;
  color: #1f215a;
  transition: color 0.3s;
}

.like-container:hover .like-btn-icon {
  color: #a21651;
}


@media (max-width: 768px) {
  .book-title-text {
    min-height: auto;
  }
}









/* ================= GLOBAL PREMIUM STYLES ================= */

/* Premium Heading */
.h2line-premium {
  font-weight: 800;
  color: #1f215a;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.h2line-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #a21651, #f9c713);
  border-radius: 2px;
}

/* Enhanced Book Store Grid */
.book-store-grid .book-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* border: 1px solid #f0f0f0; */
  height: 100%;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); */
  display: flex;
  flex-direction: column;
}

.book-store-grid .book-card:hover {
  /* transform: translateY(-10px); */
  /* box-shadow: 0 15px 35px rgba(31, 33, 90, 0.1); */
  /* border-color: #1f215a; */
}

.book-store-grid .book-card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.book-store-grid .book-card:hover img {
  transform: translateY(-5px);
  /* transform: scale(1.05); */
}

.book-store-grid .book-name {
  font-weight: 700;
  color: #1f215a;
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.3;
  height: 35px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-grow: 1;
}

.book-store-grid .book-price {
  color: #a21651;
  font-weight: 800;
  font-size: 16px;
  margin-top: auto;
}

.book-store-grid .btn-view-details {
  background: linear-gradient(135deg, #1f215a 0%, #3498db 100%);
  color: #fff !important;
  border: none;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(31, 33, 90, 0.2);
}


.book-store-grid .book-card:hover .btn-view-details {
  transform: scale(1.05);
  background: linear-gradient(135deg, #a21651 0%, #f9c713 100%);
  box-shadow: 0 8px 25px rgba(162, 22, 81, 0.3);
}

/* Custom Grid for 5 columns */
@media (min-width: 1200px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* ================= CUSTOM CIRCLE DESIGNS ================= */
.timeline-dates {
  display: inline;

}

.date-circle-red {
  width: 80px;
  height: 80px;
  background-color: #d93c4a;
  /* Vibrant Red */
  border: 4px solid #f8f9fa;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(217, 60, 74, 0.3);
  color: #ffffff;
  text-align: center;
  font-family: sans-serif;
  transition: all 0.3s ease;
}

.date-circle-red span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-circle-red strong {
  font-size: 30px;
  line-height: 1;
  margin-top: -2px;
}

/* Blue Ring Circle (like the DEC 31 image) */
.date-circle-blue {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 4px solid #e9ecef;
  border-top-color: #1f215a;
  /* Blue accent ring */
  border-left-color: #1f215a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(31, 33, 90, 0.1);
  color: #1f215a;
  text-align: center;
  font-family: sans-serif;
  transition: all 0.3s ease;
}

.date-circle-blue span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-circle-blue strong {
  font-size: 30px;
  line-height: 1;
}

/* Checklist with Circle Design */
.premium-checklist {
  list-style: none;
  padding: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.checklist-item:hover {
  background-color: #f8faff;
  transform: translateX(10px);
}

.check-circle-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: #ffffff;
  border: 3px solid #e9ecef;
  border-top-color: #1f215a;
  border-left-color: #1f215a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f215a;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ================= INDEXING SECTION ================= */
.indexing-section {
  border-top: 1px solid #eee;
}

.indexing-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f215a;
  letter-spacing: -0.5px;
}

.indexing-section .divider-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #a21651, #f9c713);
  border-radius: 2px;
}

.indexing-section .partner-logo {
  padding: 15px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.indexing-section .partner-logo:hover {
  transform: translateY(-5px);
}

.indexing-section .partner-logo img {
  filter: grayscale(10%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.indexing-section .partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.checklist-content h6 {
  margin: 0;
  font-weight: 700;
  color: #1f215a;
}

.checklist-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Editor Photo Circle */
.editor-photo-circle {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1f215a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.editor-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOOTER CURSOR ANIMATION ===== */
.footer-cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid #a21651;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  mix-blend-mode: plus-lighter;
  box-shadow: 0 0 15px rgba(162, 22, 81, 0.5);
  top: 0;
  left: 0;
}

.footer-cursor.active {
  opacity: 1;
}

.footer-cursor.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(162, 22, 81, 0.15);
  border-width: 1px;
  box-shadow: 0 0 25px rgba(162, 22, 81, 0.8);
}

/* Payment Icons Styling */
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-icon {
  height: 20px;
  width: auto;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .payment-methods {
    justify-content: center;
  }
}

/* Ticker Marquee Styling */
.ticker-wrapper {
  color: #1f215a;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
}

.ticker-content {
  display: block;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: max-content;
  align-items: center;
  animation: ticker 60s linear infinite;
  padding-left: 100%;
}

.ticker-content p,
.ticker-content div {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-content span,
.ticker-content img {
  vertical-align: middle;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== FLOATING BUTTONS ===== */
.floating-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: translateY(-5px) scale(1.1);
  color: #fff;
}

.scroll-btn {
  background-color: #1f215a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-btn:hover {
  background-color: #a21651;
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .main-footer {
    background: url("../images/FooterImage.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }

  .h2line {
    font-size: larger;
  }

  .tagline {
    font-size: medium;
  }

  .floating-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .footercontent {
    text-align: justify;
    padding-left: 10px;
  }

  .conferenceproceedingp {
    text-align: justify;
  }
}