/* Transform Your Life - Custom Styles */

/* CSS Variables */
:root {
  --primary-color: #19487E;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --light-bg: #f7fafc;
  --gradient-primary: #19487E;
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-bg: #d3d6da;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between icon and image */
  flex-wrap: wrap;
  /* allows wrapping on small screens */
}

/* FontAwesome Icon */
.logo-container i {
  font-size: clamp(20px, 2vw, 32px);
  /* responsive size */
  color: #333;
  /* change color if needed */
}

/* Logo Image */
.logo-container img {
  max-width: 150px;
  /* prevent from being too large */
  width: 100%;
  height: auto;
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .logo-container {
    justify-content: center;
    /* center on mobile */
    text-align: center;
  }

  .logo-container img {
    max-width: 120px;
    /* smaller image on mobile */
  }

  .logo-container i {
    font-size: 20px;
    /* smaller icon on mobile */
  }
}

/* Section Styling */
.about-book-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Author Image & Badge */
.author-image-wrapper {
  position: relative;
  display: inline-block;
}

.author-img {
  border-radius: 1rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.author-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* Floating Shape Decoration */
.auther_floating_shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: #f59e0b;
  border-radius: 50%;
  opacity: 0.2;
}

/* Highlights List */
.author-highlights li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.author-highlights i {
  color: #0272B9;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0272B9;
  position: relative;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .author-badge {
    transform: translateX(-50%) translateY(30%);
  }

  .btn {
    margin: 10px 0;
  }

  .hero-book {
    margin: 10px 0;
  }

  .cta-btn {
    text-align: center;
  }

  .author-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .auther_floating_shape {
    display: none;
  }
}

.author_title {
  color: var(--white) !important;
}

.author_sub_title {
  color: var(--white) !important;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgb(0, 0, 0);
  margin-bottom: 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}


/* Preloader css start  */



/* Navbar */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  transition: var(--transition);
}

.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-light);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.logo-container i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gradient-primary);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.cta-btn {
  background: var(--gradient-primary);
  color: var(--white) !important;
  border-radius: 25px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  background: var(--gradient-primary);
}

.cart-count {
  background: var(--gradient-secondary);
  color: var(--white);
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.3rem;
}

/* Hero Sections */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

/* Optional soft overlay effect */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* subtle dark layer */
  z-index: 1;
}

/* Make sure your hero content stays above overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
  color: #fff;
  /* ensures text stays readable */
}

.home-hero-heading {
  color: rgb(255, 255, 255) !important;
  font-size: 70px !important;
}

.home-hero-title {
  color: rgb(255, 255, 255) !important;
}

.available_heading {
  color: black !important;
}


.available_sub_title {
  color: black !important;
}

/* hero-bubble-animation Container */
.hero-bubble-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Basic hero-bubble-animation Style */
.hero-bubble-animation {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp linear infinite;
}

/* Individual hero-bubble-animation Variations */
.hero-bubble-animation:nth-child(1) {
  width: 15px;
  height: 15px;
  left: 10%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.hero-bubble-animation:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 20%;
  animation-duration: 9s;
  animation-delay: 2s;
}

.hero-bubble-animation:nth-child(3) {
  width: 12px;
  height: 12px;
  left: 30%;
  animation-duration: 14s;
  animation-delay: 4s;
}

.hero-bubble-animation:nth-child(4) {
  width: 10px;
  height: 10px;
  left: 45%;
  animation-duration: 11s;
  animation-delay: 1s;
}

.hero-bubble-animation:nth-child(5) {
  width: 20px;
  height: 20px;
  left: 55%;
  animation-duration: 18s;
  animation-delay: 3s;
}

.hero-bubble-animation:nth-child(6) {
  width: 7px;
  height: 7px;
  left: 65%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.hero-bubble-animation:nth-child(7) {
  width: 14px;
  height: 14px;
  left: 75%;
  animation-duration: 13s;
  animation-delay: 2s;
}

.hero-bubble-animation:nth-child(8) {
  width: 9px;
  height: 9px;
  left: 85%;
  animation-duration: 15s;
  animation-delay: 1s;
}

.hero-bubble-animation:nth-child(9) {
  width: 11px;
  height: 11px;
  left: 50%;
  animation-duration: 12s;
  animation-delay: 0.5s;
}

.hero-bubble-animation:nth-child(10) {
  width: 18px;
  height: 18px;
  left: 35%;
  animation-duration: 17s;
  animation-delay: 4s;
}

/* hero-bubble-animation Floating Animation */
@keyframes floatUp {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }

  40% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0.8;
  }

  40% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(-500px) translateX(-20px);
    opacity: 0;
  }
}


.hero-book {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.book-bubble-animation {
  position: relative;
  display: inline-block;
}

.book-image {
  position: relative;
  z-index: 5;
  width: 300px !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

/* Orbit Bubbles */
.bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 2px solid rgb(255 255 255 / 30%);
  transform: translate(-50%, -50%);
  animation: rotateBubble 6s linear infinite;
}

.bubble::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent-color);
}

.bubble.delay {
  width: 450px;
  height: 450px;
  border-color: rgb(228 184 184 / 20%);
  animation-duration: 9s;
}

.bubble.delay::before {
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
}

.bubble.small {
  width: 250px;
  height: 250px;
  border-color: rgba(240, 147, 251, 0.2);
  animation-duration: 9s;
}

.bubble.small::before {
  background: var(--secondary-color);
  box-shadow: 0 0 20px var(--secondary-color);
}

@keyframes rotateBubble {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.book-container {
  position: relative;
}

.book-image {
  width: 250px;
  /* adjust size */
  max-width: 100%;
  display: block;
  border-radius: 8px;
  z-index: 2;
  position: relative;
}

/* Circular shadow under the book */
.book-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  /* shadow width */
  height: 20px;
  /* shadow height */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  border-radius: 50%;
  filter: blur(6px);
  /* softer shadow */
  z-index: 1;
}

.hero-content {
  color: var(--white);
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .highlight {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-book {
  position: relative;
  z-index: 2;
  text-align: center;
}

.book-container {
  position: relative;
  display: inline-block;
}

.book-image {
  max-width: 100%;
  height: auto;
  rotate: -13deg !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

.page-hero {
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* ensures image doesn't overflow section */
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  /* optional overlay */
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  /* text above image */
}

.page-hero .bg-hero-images {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* center the image */
  z-index: 0;
  /* behind text */
  pointer-events: none;
  /* optional, so image doesn't block clicks */
  max-width: 100%;
  opacity: 0.8;
  /* optional transparency */
}


.buy-book-section {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  border-radius: 12px;
}

.buy-book-section h2 {
  color: #333;
}

.buy-book-section p {
  color: #555;
}

.buy-book-section .btn {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.buy-book-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.commot-btn-c {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.commot-btn-c:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Cards */
.benefit-card,
.topic-card,
.testimonial-card,
.story-card,
.chapter-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover,
.topic-card:hover,
.testimonial-card:hover,
.story-card:hover,
.chapter-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.benefit-icon,
.topic-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.topic-number {
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--border-radius);
}

.topic-features {
  list-style: none;
  padding: 0;
}

.topic-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.topic-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Author Section */
.author-section {
  background: var(--white);
  position: relative;
}

.author-image {
  position: relative;
}

.author-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.credential i {
  color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
  background: var(--light-bg);
}

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  color: black;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-guarantee {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: var(--transition);
  text-decoration: none !important;
}

.social-links a:hover {
  background: black;
  color: #ffffff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}



/* Video Section */
.video-section {
  background: var(--white);
  padding: 60px 0;
}

/* Align text center in column */
.video-info {
  max-width: 500px;
  margin: 0 auto;
}

.video-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.video-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.custom-btn {
  background: linear-gradient(135deg, #19487E, #764ba2);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.custom-btn:hover {
  background: linear-gradient(135deg, #764ba2, #19487E);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

/* Video Container */
.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Video Placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.video-player {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.5s ease;
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 900px;
  background: #000;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  animation: scaleIn 0.5s ease;
}

.video-modal video {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
}

.close-modal:hover {
  color: #f00;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}


/* Play Button */
.play-button {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.7);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 rgba(102, 126, 234, 0.5);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.7);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 rgba(102, 126, 234, 0.5);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .video-info {
    text-align: center;
    margin-bottom: 30px;
  }

  .custom-btn {
    padding: 10px 24px;
  }
}


/* video section css end  */



/* Methodology Section */
.methodology-section {
  background: var(--light-bg);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Steps */
.methodology-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1);
}

.step-content h5 {
  color: var(--gradient-primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.step-content p {
  color: #555;
  font-size: 0.95rem;
}

/* Visual */
.methodology-visual img {
  width: 350px;
  height: 500px;
  object-fit: cover;
  opacity: 0.8;
  /* Correct opacity value */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



/* Responsive */
@media (max-width: 992px) {
  .methodology-visual img {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 768px) {
  .methodology-steps {
    gap: 1rem;
  }

  .methodology-visual img {
    width: 350px;
    height: 350px;
    margin: 2rem 0 0;
  }
}

@media (max-width: 480px) {
  .methodology-visual img {
    width: 250px;
    height: 300px;
  }
}



/* Success Stories */
.success-stories {
  background: var(--white);
}

.story-image {
  border-radius: 12px;
  /* soft rounded corners */
  overflow: hidden;
  margin-bottom: 10px;
  width: 80px;
  /* smaller width */
  height: 80px;
  /* smaller height */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* subtle shadow */
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cover the container without distortion */
  display: block;
  transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.05);
  /* subtle zoom effect */
}

.story-author {
  font-weight: 600;
  color: var(--primary-color);
}


.contact-info-section {
  background: #f9f9f9;
  color: #1e293b;
}

.contact-info-section .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.contact-info-section .section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
}

.contact-info-section a.text-primary {
  color: #0272B9;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-info-section a.text-primary:hover {
  color: #F4650F;
}

.contact-info-section .commot-btn-c {
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* .contact-info-section .commot-btn-c:hover {
    background-color: #F4650F;
    border-color: #F4650F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} */



/* Book Details */
.book-details {
  background: var(--white);
}

.book-showcase {
  position: relative;
  text-align: center;
}

.book-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-item {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.book-specs {
  margin: 2rem 0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.spec-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.book-features {
  margin-top: 2rem;
}

.book-features ul {
  list-style: none;
  padding: 0;
}

.book-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.book-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}



/* Partners Section */

.partners-section {
  background: var(--light-bg);
}

.partners-slider {
  overflow: hidden;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  /* opacity: 0.6; */
  transition: var(--transition);
  /* filter: grayscale(100%); */
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Book Purchase Section */
.book-purchase {
  background: var(--white);
}

.book-display {
  text-align: center;
}

.book-3d {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.book-shadow {
  position: absolute;
  bottom: -20px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(10px);
}

.book-formats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.format-item {
  padding: 0.5rem 1rem;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.format-item.active,
.format-item:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
}

.purchase-options {
  padding-left: 2rem;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stars {
  color: #ffd700;
}

.rating-text {
  color: var(--text-light);
}

.pricing-options {
  margin: 2rem 0;
}

.price-option {
  padding: 1.5rem;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  transition: var(--transition);
  display: none;
}

.price-option.active {
  display: block;
  border-color: var(--primary-color);
  background: rgba(102, 126, 234, 0.05);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-header h4 {
  color: var(--primary-color);
  margin: 0;
}

.price {
  text-align: right;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.price-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.purchase-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.qty-btn {
  background: var(--light-bg);
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.qty-input {
  border: none;
  padding: 0.5rem;
  width: 60px;
  text-align: center;
  background: var(--white);
}

.add-to-cart,
.buy-now {
  flex: 1;
  min-width: 150px;
  font-size: 15px;
}

.purchase-guarantees {
  margin: 2rem 0;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.guarantee-item i {
  color: var(--primary-color);
}

/* Bundle Offers */
.bundle-offers {
  background: var(--light-bg);
}

.bundle-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.bundle-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.bundle-price {
  margin: 1.5rem 0;
}

.bundle-price .current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.bundle-price .original-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.bundle-price .savings {
  color: #28a745;
  font-weight: 600;
  font-size: 0.9rem;
}

.bundle-includes {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.bundle-includes li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.bundle-includes li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.overall-rating {
  margin-bottom: 2rem;
}

.rating-stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 1rem;
}

.rating-count {
  color: var(--text-light);
}

.review-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-helpful {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.helpful-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.helpful-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  background: var(--light-bg);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-button {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: var(--white);
  padding: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Cart Styles */
.cart-section {
  background: var(--white);
  min-height: 60vh;
}

.cart-items {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.clear-cart {
  font-size: 0.9rem;
}

.book-price h4 {
  color: var(--primary-color);
}

.list-unstyled li i {
  color: var(--primary-color) !important;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item.saved {
  opacity: 0.7;
}

.item-image {
  flex-shrink: 0;
}

.item-image img {
  width: 80px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details {
  flex: 1;
}

.item-details h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.item-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.item-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.item-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.item-price {
  text-align: center;
  min-width: 100px;
}

.item-price .current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.item-price .original-price {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.item-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-actions .btn-link {
  font-size: 0.9rem;
  padding: 0;
  text-decoration: none;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 1rem;
}

.promo-code {
  margin: 1.5rem 0;
}

.checkout-btn {
  margin: 1.5rem 0;
}

.payment-methods {
  text-align: center;
  margin: 1.5rem 0;
}

.payment-methods p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.security-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.security-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.recommendations {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recommendation-item:last-child {
  border-bottom: none;
}

.recommendation-item img {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.rec-details {
  flex: 1;
}

.rec-details h6 {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.rec-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.continue-shopping {
  background: var(--light-bg);
}

.shopping-links {
  margin-top: 1.5rem;
}

/* Checkout Styles */
.checkout-progress {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  position: relative;
}

.step.completed,
.step.active {
  color: var(--primary-color);
}

.step-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.step.completed .step-icon,
.step.active .step-icon {
  border-color: var(--primary-color);
  background: var(--gradient-primary);
  color: var(--white);
}

.step::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 100%;
  width: 2rem;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.step:last-child::after {
  display: none;
}

.step.completed::after {
  background: var(--primary-color);
}

.checkout-section {
  background: var(--light-bg);
}

.checkout-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  min-width: 150px;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.payment-option input[type="radio"]:checked+label {
  border-color: var(--primary-color);
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
}

.order-summary {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 100px;
}

.order-items {
  margin-bottom: 2rem;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-item:last-child {
  border-bottom: none;
}

.item-thumb {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.item-info {
  flex: 1;
}

.item-info h6 {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.item-qty {
  color: var(--text-light);
  font-size: 0.8rem;
}

.order-totals {
  margin: 2rem 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.final-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.place-order-btn {
  margin: 1.5rem 0;
}

.security-info {
  margin: 1.5rem 0;
}

.accepted-payments {
  text-align: center;
  margin-top: 1.5rem;
}

.accepted-payments p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.trust-indicators {
  background: var(--white);
}

.trust-item {
  text-align: center;
  padding: 1rem;
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.trust-item h6 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Coaching Styles */
.book-hero {
  background: var(--primary-color) !important;
}

.book-hero-card {
  max-width: 250px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.book-image-small {
  max-width: 150px;
}

.feature-item span {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
}

.highlight {
  color: #f59e0b;
  /* accent color */
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #503F80;
}

.feature-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
}

.coaching-stats {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  min-width: 80px;
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.how-it-works {
  background: var(--white);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-step .step-icon {
  position: relative;
  margin: 0 auto 1.5rem;
}

.process-step .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-secondary);
  color: var(--white);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.coaching-benefits {
  background: var(--light-bg);
}

.benefit-list {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}


.book-form-section .card {
  transition: all 0.3s ease;
  border: none;
}

.book-form-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.book-form-section .form-label {
  font-weight: 500;
}

.book-form-section .form-control,
.book-form-section .form-select {
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.book-form-section .commot-btn-c {
  border-radius: 2rem;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .book-form-section .card {
    padding: 2rem 1.5rem;
  }
}

.coaching-success {
  background: var(--light-bg);
}

.success-story {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.success-story:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.story-video {
  position: relative;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.play-overlay:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.story-content {
  padding: 1.5rem;
}

.story-content h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.story-author strong {
  color: var(--text-dark);
}

.story-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.coaching-faq {
  background: var(--white);
}

.coaching-cta {
  background: var(--gradient-bg);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

/* Free Sample Section */
.free-sample-section {
  padding: 70px 0;
  display: flex;
  align-items: center;
}

.free-sample-box {
  background: var(--gradient-primary);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  max-width: 900px;
  margin: auto;
}

.free-sample-box h2 {
  font-weight: 700;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.free-sample-box p {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.85;
}

/* Form Layout */
.free-sample-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.free-sample-form input {
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  border: none;
  border-radius: var(--border-radius);
  outline: none;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-light);
}

.free-sample-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.free-sample-form button:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

/* Name Fields Side-by-Side */
.free-sample-form .name-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 820px;
}

.free-sample-form .name-fields input {
  flex: 1;
}

/* ✅ Email Verification Box */
.email-verification-wrapper {
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.email-verification-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 10px;
  margin-top: 10px;
  display: none;
  transition: all 0.3s ease-in-out;
}

/* ✅ OTP Input Style */
.otp-input-group {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sample-otp-digit {
  width: 40px;
  height: 45px;
  border-radius: 6px;
  border: none;
  text-align: center;
  font-size: 1.2rem;
  background: #fff;
  color: #000;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  outline: none;
}

.sample-otp-digit:focus {
  border: 2px solid #fbc531;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .free-sample-form .name-fields {
    flex-direction: column;
    gap: 15px;
  }

  .sample-otp-digit {
    width: 38px;
    height: 42px;
    font-size: 1rem;
  }

  .email-verification-box {
    padding: 15px;
  }
}

/* free sample end  */

/* book highlight  */

/* Section Background */
.book-highlights-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Title */
.book-highlights-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.book-highlights-section .section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #f59e0b;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Platform Buttons */
.book-platforms .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-amazon {
  background: #FF9900;
  color: #fff;
  border: none;
}

.btn-amazon:hover {
  background: #e68a00;
  transform: translateY(-3px);
}

.btn-barnes {
  background: #0272B9;
  color: #fff;
  border: none;
}

.btn-barnes:hover {
  background: #025a8b;
  transform: translateY(-3px);
}

.btn-kindle {
  background: #FF6600;
  color: #fff;
  border: none;
}

.btn-kindle:hover {
  background: #e65c00;
  transform: translateY(-3px);
}

/* Highlights Box */
.highlights-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.highlights-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Highlights List */
.highlights-list li {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.highlights-list i {
  color: #0272B9 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .highlights-box {
    padding: 2rem;
  }
}


.book-highlights-section {
  background: #F7FAFC;
  padding: 70px 0;
}

.book-platforms .btn {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 12px 25px;
  font-weight: 600;
  transition: var(--transition);
}

.book-platforms .btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.highlights-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}


/* highlights-list End */


/* Services start  */

.services-section {
  background: var(--light-bg);
  padding: 70px 0;
}

.service-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  text-align: center;
    height: 100% !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-card .btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 10px 25px;
  transition: var(--transition);
}

.service-card .btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}


/* Services End  */


.privacy-text {
  display: block;
  margin-top: 15px;
  color: var(--white);
  opacity: 0.7;
  font-size: 0.85rem;
}



/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .item-quantity,
  .item-price {
    align-self: stretch;
    text-align: left;
  }

  .purchase-actions {
    flex-direction: column;
  }

  .add-to-cart,
  .buy-now {
    width: 100%;
  }

  .progress-steps {
    gap: 1rem;
  }

  .step span {
    font-size: 0.8rem;
  }

  .payment-methods {
    flex-direction: column;
  }

  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-features {
    margin: 1.5rem 0;
  }

  .coaching-stats {
    position: static;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }

  .book-formats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .format-item {
    justify-content: flex-start;
  }

  .bundle-card {
    margin-bottom: 2rem;
  }

  .package-card.featured {
    transform: none;
  }
}

/* Animation Classes for GSAP */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.8);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-bg);
}

.shadow-custom {
  box-shadow: var(--shadow-medium);
}

.border-radius-custom {
  border-radius: var(--border-radius);
}

/* Print Styles */
@media print {

  .navbar,
  .back-to-top,
  #preloader {
    display: none !important;
  }

  body {
    background: white !important;
  }

  .hero-section,
  .page-hero {
    background: white !important;
    color: black !important;
  }
}

/* Login start css  */


.auth-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 80px 0px 40px 0px;
}

/* Floating Background Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation: float 9s ease-in-out infinite reverse;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 5%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Main Auth Card */
.auth-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-medium);
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.floating-shapes {
  z-index: 1;
}

.auth-card {
  position: relative;
  z-index: 5;
  /* higher than floating shapes */
}


/* Toggle Buttons */
.auth-toggle {
  display: flex;
  background: var(--light-bg);
  padding: 8px;
  margin: 20px;
  border-radius: 12px;
  position: relative;
}

.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.toggle-btn.active {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-light);
}

.toggle-btn:hover {
  color: var(--primary-color);
}

/* Left Side Illustration */
.auth-illustration {
  background: var(--gradient-primary);
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.illustration-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
}

.welcome-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  opacity: 0;
}

.illustration-graphic {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.graphic-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.element-1 {
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 3s ease-in-out infinite;
}

.element-2 {
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: 20px;
  animation: pulse 3s ease-in-out infinite 1s;
}

.element-3 {
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Right Side Forms */
.auth-forms {
  padding: 40px;
  position: relative;
}

.auth-form {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* padding: 20px; */
}

.auth-form.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 1rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-label i {
  margin-right: 8px;
  color: var(--primary-color);
  width: 16px;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-light);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

/* Password Input */
.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.form-check-label {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--secondary-color);
}

/* Terms Check */
.terms-check {
  margin-bottom: 2rem;
}

.terms-check .form-check-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.terms-check a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.terms-check a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  display: flex;
  /* make button a flex container */
  align-items: center;
  /* vertically center text & icon */
  justify-content: center;
  /* horizontally center */
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
  /* fallback */
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.auth-btn:active {
  transform: translateY(0);
}

.btn-text {
  z-index: 2;
}

.btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.auth-btn:hover .btn-icon {
  transform: translateX(4px);
}


/* Responsive Design */
@media (max-width: 991.98px) {
  .auth-illustration {
    min-height: 300px;
  }

  .hero-section {
    margin-top: 120px !important;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .auth-forms {
    padding: 30px 20px;
  }

  .auth-form {
    padding: 30px 20px;
  }
}

@media (max-width: 767.98px) {
  .auth-container {
    padding: 10px;
  }

  .auth-card {
    border-radius: 16px;
  }

  .auth-toggle {
    margin: 15px;
  }

  .toggle-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .social-buttons {
    gap: 8px;
  }

  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .social-text::before,
  .social-text::after {
    width: 35%;
  }
}

.subscribe-form {
  display: flex;
  gap: 5px;
  /* space between input and button */
}

.subscribe-form input[type="email"] {
  flex: 1;
  /* input takes remaining width */
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.subscribe-form button {
  padding: 8px 15px;
  background: white;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-subscribe:hover {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
}

/* Login start End  */

/* home page css */
:root {
  --aw-primary-color: #1A487E;
  --aw-body-bg: #FFFFFF;
  --aw-text-dark: #333333;
  --aw-text-light: #666666;
  --aw-accent-gold: #1A487E;
}

body {
  background-color: var(--aw-body-bg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Updated all class names with unique 'aw-' prefix and enhanced design */
/* Section 01 - Author Profile Showcase */
.aw-profile-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
  overflow: hidden;
}

.aw-profile-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(25, 72, 126, 0.03) 0%, transparent 70%);
  animation: aw-float 20s ease-in-out infinite;
}

@keyframes aw-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.aw-profile-mastercard {
  background: var(--aw-body-bg);
  border-radius: 25px;
  padding: 20px 10px;
  /* box-shadow:
    0 25px 80px rgba(25, 72, 126, 0.12),
    0 10px 30px rgba(25, 72, 126, 0.08), */
  /* inset 0 1px 0 rgba(255, 255, 255, 0.9); */
  border: 1px solid rgba(25, 72, 126, 0.08);
  /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
  position: relative;
  overflow: hidden;
  /* backdrop-filter: blur(10px); */
}

/* .aw-profile-mastercard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--aw-primary-color), var(--aw-accent-gold), var(--aw-primary-color));
  background-size: 200% 100%;
  animation: aw-shimmer 3s ease-in-out infinite;
} */

/* @keyframes aw-shimmer {

  0%,
  100% {
    background-position: -200% 0;
  }

  50% {
    background-position: 200% 0;
  }
} */

/* .aw-profile-mastercard:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 35px 100px rgba(25, 72, 126, 0.18),
    0 15px 40px rgba(25, 72, 126, 0.12);
} */

.aw-author-avatar-container {
  position: relative;
  margin: 0 auto 40px;
  width: 140px;
  height: 140px;
}

.aw-author-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-primary-color), #1A497F, var(--aw-accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(25, 72, 126, 0.3);
  transition: all 0.3s ease;
}

.aw-author-avatar::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-primary-color), #1e40af);
  z-index: 1;
}

.aw-author-avatar i {
  font-size: 55px;
  color: white;
  z-index: 2;
  position: relative;
}

/* .aw-author-avatar:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(25, 72, 126, 0.4);
} */

.aw-author-name {
  color: var(--aw-primary-color);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
}

.aw-author-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-accent-gold), var(--aw-primary-color));
  border-radius: 2px;
}

.aw-author-designation {
  color: var(--aw-text-light);
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.aw-contact-badge {
  padding: 20px 30px;
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aw-contact-badge a {
  background: linear-gradient(135deg, rgba(25, 72, 126, 0.08), rgba(25, 72, 126, 0.12));
  padding: 20px 50px;
  border-radius: 60px;
  text-align: center;
}

.aw-contact-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.aw-contact-badge:hover::before {
  left: 100%;
}

.aw-contact-badge a:hover {
  background: linear-gradient(135deg, rgba(25, 72, 126, 0.12), rgba(25, 72, 126, 0.16));
  /* transform: scale(1.05); */
}

.aw-email-link {
  color: var(--aw-primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  /* transition: all 0.3s ease; */
  position: relative;
  z-index: 2;
}

.aw-email-link:hover {
  color: #1e40af;
  /* text-shadow: 0 2px 4px rgba(25, 72, 126, 0.2); */
}

.aw-explore-button {
  background: linear-gradient(135deg, var(--aw-primary-color), #1e40af);
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.15rem;
  /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
  box-shadow:
    0 10px 30px rgba(25, 72, 126, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.aw-explore-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  /* transition: left 0.6s ease; */
}

.aw-explore-button:hover::before {
  left: 100%;
}

.aw-explore-button:hover {
  background: linear-gradient(135deg, #1e40af, var(--aw-accent-gold));
  /* transform: translateY(-3px) scale(1.05); */
  box-shadow:
    0 15px 40px rgba(25, 72, 126, 0.4),
    0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Section 02 - Call to Action Masterpiece */
.aw-cta-masterpiece {
  padding: 120px 0 !important;
  background: linear-gradient(135deg, var(--aw-primary-color) 0%, #1C487D 50%, #1C487D 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

.aw-cta-masterpiece::before {
  content: '';
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aw-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23aw-dots)"/></svg>') !important;
}

.aw-cta-content-wrapper {
  position: relative !important;
  z-index: 2 !important;
}

.aw-cta-main-heading {
  color: white;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  text-align: center !important;
  margin-bottom: 25px !important;
  line-height: 1.1 !important;
  letter-spacing: -1px !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
}

.aw-cta-main-heading::after {
  content: '';
  position: absolute !important;
  bottom: -10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100px !important;
  height: 4px !important;
  background: linear-gradient(90deg, var(--aw-accent-gold), rgba(255, 255, 255, 0.8)) !important;
  border-radius: 2px !important;
}

.aw-cta-sub-text {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.4rem !important;
  text-align: center !important;
  margin-bottom: 50px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.aw-schedule-button {
  background: linear-gradient(135deg, white, #f8f9fa);
  color: var(--aw-primary-color);
  border: none;
  padding: 22px 55px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aw-schedule-button i {
  margin-right: 12px;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.aw-schedule-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25, 72, 126, 0.1), transparent);
  transition: left 0.6s ease;
}

.aw-schedule-button:hover::before {
  left: 100%;
}

/* .aw-schedule-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 10px 20px rgba(25, 72, 126, 0.2);
  color: var(--aw-primary-color);
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.aw-schedule-button:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--aw-accent-gold);
} */

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .aw-profile-mastercard {
    padding: 40px 25px;
    margin: 0 15px;
  }

  .aw-author-name {
    font-size: 2.2rem;
  }

  .aw-cta-main-heading {
    font-size: 2.5rem;
  }

  .aw-cta-sub-text {
    font-size: 1.2rem;
  }

  .aw-schedule-button {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
}

/* Enhanced Animation Classes */
/* .aw-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

/* .aw-fade-in-up.aw-animate {
  opacity: 1;
  transform: translateY(0);
}

.aw-fade-in-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aw-fade-in-scale.aw-animate {
  opacity: 1;
  transform: scale(1);
} */