.library-box {
  transition: background-color 0.3s ease;
  color:#000;
}

.library-box:hover {
  background-color: #c2e0e6 !important; /* Darker shade of bg-info-subtle */
}

.webinar-box {
  transition: background-color 0.3s ease;
  color:#000;
}

.webinar-box:hover {
  background-color: #f3e7c0 !important; /* Darker shade of bg-info-subtle */
}

body {
    font-family: "Vazirmatn", sans-serif !important;
    background: #fff;
    color: #222;
    direction: rtl;
    text-align: right;
    overflow-x: hidden!important;
  }
  .btn-orange {
    background: #d44000 !important;
    color: #fff !important;
    border-radius: 8px;
    border: 2px solid #d44000 !important;
    font-weight: bold;
    padding: 6px 32px;
    font-size: 1.1rem;
    transition: 0.2s;
  }
  .btn-orange:hover {
    background-color: #d44000 !important;
    border-color: #d44000 !important;
    color: #fff !important;
    opacity: 0.9;
  }
  .btn-orange-outline {
    background: #fff !important;
    color: #222 !important;
    border-radius: 8px;
    border: 2px solid #d44000 !important;
    font-weight: bold;
    padding: 6px 32px;
    font-size: 1.1rem;
    transition: 0.2s;
  }
  .btn-orange-outline:hover {
    background-color: #d44000 !important;
    border-color: #d44000 !important;
    color: #fff !important;
    opacity: 0.9;
  }
  .logo-img {
    width: 90px;
    margin-bottom: 18px;
    margin-top: 9px;
    object-fit: contain;
    display: block;
  }
  .center-title {
    font-weight: 500;
    font-size: 1.2rem;
    margin: 36px 0 22px 0;
    padding: 0;
    text-align: center;
  }
  .badge-orange-bg {
    background: #f8e1d6;
    color: #78401b;
    border-radius: 2px;
    padding: 2px 0px;
    font-weight: 500;
    font-size: 1.07rem;
    display: inline-block;
    margin-left: 4px;
  }
  .badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 0px;
  }
  .main-content-row {
    margin-top: 22px;
  }
  .hex-bg {
    background: none;
    position: relative;
    width: 310px;
    min-width: 230px;
    min-height: 300px;
    aspect-ratio: 1;
    margin: 0 auto;
}
  .hexagon-shape {
    position: absolute;
    width: 310px;
    height: 340px;
    background: none;
    z-index: 0;
    left: 0; top: 0;
    pointer-events: none;
  }
  /* Hexagon SVG trick */
  .hexagon-shape svg {
    width: 100%; height: 100%;
    display: block;
  }
  .devices-stack {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .single-device-img {
    display: block;
    max-width: 300px;
    height: auto;
  }
  /* Typography for main text */
  .main-text {
    color: #222;
    font-size: 1.19rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    margin-top: 1rem !important;
    text-align: right;
    letter-spacing: 0.01em;
    padding-right: 155.908px;
  }
  .main-text-right{
    line-height: 1.4;
    text-align: right;
    letter-spacing: 0.01em;
  }
  .main-text-1{
    line-height: 1.4;
    text-align: justify;
    letter-spacing: 0.01em;
  }
  .main-text b, .main-text strong {
    font-weight: 700 !important;
    color: #232629;
  }
  .main-text .brand {
    font-weight: bold;
    color: #393D72;
    background: none;
    border-radius: 0;
    padding: 0;
    font-size: inherit;
    display: inline;
  }
  .main-text .team {
    font-weight: bold;
    color: #232629;
    font-size: inherit;
    display: inline;
  }
  .pay-bg{
    margin-top: 60px!important;
  }
  
  @media (max-width: 991px) {
    .main-content-row {
      /* flex-direction handled by Bootstrap's column stacking */
      align-items: center;
      gap: 24px;
    }
    .hex-bg { /* Adjust centering for stacked layout */
        margin: 0 auto 10px auto;
    }
     .main-text {
         margin-top: 0 !important; /* Adjust margin for smaller screens */
     }
     .features-checklist {
           padding-right: initial; /* Reset padding for smaller screens */
      }
      .tilted-bg-shape {
          transform: skewY(-3deg) scaleY(1.05); /* Negative transform for smaller screens */
          transform-origin: bottom right; /* Skew from the bottom right for smaller screens */
          border-radius: 10px; /* Apply border-radius for smaller screens */
      }
  }
  @media (max-width: 767px) {
    .center-title {
      font-size: 1.06rem;
      margin: 26px 0 20px 0;
      padding: 0 5% !important; /* Keep some padding on mobile */
    }
     .hex-bg, .hexagon-shape {
      width: 220px !important; height: 255px !important;
      min-width: unset; min-height: unset;
      aspect-ratio: 1 / 1.09;
     }
     .main-text {
         padding-right: 5% !important; /* Apply padding-right for mobile and tablet */
         padding-left: 5% !important; /* Apply padding-left for mobile and tablet */
     }
     .features-checklist {
           padding-right: 5% !important; /* Apply padding-right for mobile and tablet */
           padding-left: 5% !important; /* Apply padding-left for mobile and tablet */
      }
  }
  /* Center the main text vertically in a flex column */
  .col-md-8.d-flex .main-text {
      margin: auto 0; /* Apply auto vertical margins */
  }

  /* Features Section Styles */
  .features-section-wrapper {
      position: relative; /* Needed for absolute positioning of tilted shape */
      margin-top: 16px;
      width: 100%;
      overflow: visible; /* Changed from hidden to visible to show bottom shape */
  }
  .tilted-bg-shape-features {
    position: absolute;
    top: -30px; /* Move it up to show the border */
    left: 0;
    width: 100%;
    height: 120%; /* Make it taller to account for the skew */
    transform: skewY(-3deg); /* Negative skew for right-to-left upward tilt */
    transform-origin: bottom right; /* Skew from the bottom right */
    z-index: 0; /* Ensure it's behind the content */
    background: #faf9f0; /* Background color */
    border-bottom: 3px solid rgb(237, 220, 149); /* Only top border for top shape */
}


.tilted-bg-shape-features.bottom {
    top: auto;
    bottom: -30px; /* Move it down to be fully visible */
    height: 120%; /* Make it taller to account for the skew */
    transform: skewY(-3deg); /* Same skew as top shape */
    transform-origin: top right; /* Skew from the top right */
    border-bottom: none; /* Remove top border */
    border-top: 3px solid rgb(237, 220, 149); /* Only bottom border for bottom shape */
}




  .features-section-container {
      position: relative; /* To keep content above the tilted background */
      z-index: 1; /* Ensure content is above background */
      max-width: 1100px;
      margin: 0 auto;
      padding: 0;
      padding-top: 1rem; /* Equivalent to pt-3 */
      padding-left: 1.5rem; /* Equivalent to px-lg-5 on larger screens */
      padding-right: 1.5rem; /* Equivalent to px-lg-5 on larger screens */
  }
  @media (min-width: 992px) {
      .features-section-container {
           padding-left: 3rem; /* Adjust px-lg-5 for larger screens */
           padding-right: 3rem; /* Adjust px-lg-5 for larger screens */
      }
  }
  .features-section-row {
       align-items: stretch; /* Changed from center to stretch */
       padding: 1rem 0.75rem; /* py-4 px-3 */
  }
  @media (min-width: 768px) {
      .features-section-row {
           padding: 1rem 1rem; /* py-4 px-md-4 */
      }
  }

  
  .featuress-section-row {
    align-items: stretch; /* Changed from center to stretch */
    padding: 1rem 0.75rem; /* py-4 px-3 */
}
@media (min-width: 768px) {
   .featuress-section-row {
        padding: 1rem 1rem; /* py-4 px-md-4 */
        padding-bottom:0;
   }
}
  .features-section h2 {
      color: #222; /* Darken title color */
      margin-bottom: 3rem; /* More space below title */
  }
  .features-list {
      font-size: 1.1rem;
      line-height: 2.5rem;
      color: #222;
      padding-left: 0; /* Remove default ul padding */
  }
  .features-list li::before {
      content: '\2714'; /* Checkmark character */
      color: #d44000; /* Orange color for checkmark */
      font-weight: bold;
      display: inline-block;
      width: 1.2em; /* Space for the checkmark */
      margin-left: 10px; /* Space between checkmark and text */
      text-align: center; /* Center checkmark if needed */
  }
  .tilted-bg-shape {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 0;
    background: #faf9f0;
    border-bottom: 3px solid rgb(237, 220, 149);
}
  .page1-tilted-bg-shape{
    top: -80px;
  }
  .tilted-bg-shape.bottom {
    top: auto;
    bottom: 30px;
    height: 100%;
    transform: skewY(-3deg);
    transform-origin: top right;
    border-bottom: none;
    border-top: 3px solid rgb(237, 220, 149);
}
  @media (max-width: 991px) {
      .tilted-bg-shape {
          transform: skewY(-3deg) scaleY(1.05); /* Negative transform for smaller screens */
          transform-origin: bottom right; /* Skew from the bottom right for smaller screens */
      }
  }
  .features-img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto; /* Center image in its column */
      position: absolute; /* Position absolutely */
      bottom: 10px; /* Move up by 10px */
      left: 0;
      right: 0;
  }
  .col-lg-4 {
      position: relative; /* For absolute positioning of image */
      min-height: 400px; /* Give some height to the container */
  }

  /* Specific padding for features list column on larger screens */
  .features-checklist {
      padding-right: 155.908px;
  }
  
  .text-community {
    margin-bottom:-100px!important
  }
  .people-section{
    margin-top: 80px!important
  }
  @media (max-width: 991px) {
      .features-checklist {
           padding-right: initial; /* Reset padding for smaller screens */
      }
      
    .people-section{
      margin-top: 120px!important
    }
  }

  @media (min-width: 991px) {
    .text-community {
      margin-bottom:-50px!important
    }
}

 
  /* Styles for specific feature list items */
  .feature-highlight {
      background: #E6F1F2;
      color: #369e91;
      border-radius: 4px;
      padding: 1px 8px;
      margin-right: 2px;
      font-weight: 500;
  }
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }

  .fullwidth-fade-shadow {
    width: 100vw;
    height: 30px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    pointer-events: none;
    z-index: 10;
    /* background: linear-gradient(to top, rgba(170,170,170,0.1) 0%, rgba(170,170,170,0.10) 10%, rgba(170,170,170,0.00) 100%); */
  }
  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.faq-container {
    background-color: #faf9f0;
    border: 1px solid #e0dfd8; /* A darker shade of #faf9f0 */
    padding: 20px;
    margin-top: 0px;
    border-radius: 3px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }
  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.h5badge{
  height:35px;
  width:100%;
  float:right;
}
/* Contact Form Styles */
.contact-form-container {
  background-color: #faf9f0;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.contact-form-header {
  margin-bottom: 20px;
}

.contact-form-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form .form-field {
  flex: 1;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0d28c;
  border-radius: 25px;
  background-color: #fff;
  font-family: "Vazirmatn", sans-serif;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d44000;
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }
  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.h5badge{
  height:35px;
  width:100%;
  float:right;
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }
  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.h5badge{
  height:35px;
  width:100%;
  float:right;
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }

  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.h5badge{
  height:35px;
  width:100%;
  float:right;
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }

  /* Footer Styles */
  footer {
      margin-top: 50px; /* Add some space above the footer */
      padding-top: 20px;
      padding-bottom: 20px;
      color: #222; /* Default footer text color */
  }
  .footer-social-icons a {
      color: #d44000; /* Orange color for social icons */
      font-size: 1.8rem; /* Adjust size as needed for icons */
      margin-left: 15px; /* Space between icons */
      text-decoration: none; /* Remove underline */
  }
  .footer-links a {
      color: #222; /* Dark color for footer links */
      margin: 0 8px; /* Space around links */
      text-decoration: none; /* Remove underline */
      font-weight: bold;
  }
  .footer-links a:hover,
  .footer-social-icons a:hover {
      opacity: 0.8; /* Simple hover effect */
  }

  .icon-topper{
    margin-top:-5px;
  }

@keyframes pulse-attract {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
  50% { transform: scale(1.02); box-shadow: 0 0 16px 8px rgba(212,64,0,0.12); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,64,0,0.3); }
}

/* Only animate the join button in the community section */
.text-community ~ .features-btn, .features-btn.pulse-attract {
  animation: pulse-attract 1.5s infinite cubic-bezier(.66,0,0,1);
}

.features-btn.pulse-attract {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.features-btn.pulse-attract::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.45) 20%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  z-index: 2;
  animation: shimmer-fade 1.5s infinite cubic-bezier(.66,0,0,1);
  pointer-events: none;
}
@keyframes shimmer-fade {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.more-books-btn {
  background: #faf3d1;
  color: #222;
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 8px;
  padding: 8px 32px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
}
.more-books-btn:hover, .more-books-btn:focus {
  background: #f5e3a8;
  box-shadow: 0 2px 8px #eee;
  color: #222;
}

.speaker-tick {
  color: #000 !important;
  margin-top:-5px;
}

.speaker-li{
  margin-top:0px;
  margin-bottom:-5px!important;
  font-size:1rem;
}

.h5badge{
  height:35px;
  width:100%;
  float:right;
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.badge-blue-bg {
    background: #b9e4e8;
    color: #222;
    border-radius: 2px;
    padding: 0px 4px; /* Added some horizontal padding */
    font-weight: bold; /* Ensure text inside is bold */
}
   .feature-icon {
      color: #d5a654;
      font-size: 1.5em;
      margin-left: 8px;
      margin-top: 1px;
   }
   .features-list li {
       margin-bottom: 0.5rem; /* mb-2 equivalent */
       display: flex;
       align-items: flex-start;
   }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 600;
      color:#181818;
      text-align: right;
      direction: rtl;
      margin-bottom: 0.5rem; /* mb-2 equivalent */
    }
    .features-btn {
        font-size:1.18rem;
        border-radius:9px;
        font-weight:600;
        padding: 0.5rem 1.5rem; /* px-4 py-2 equivalent */
    }

  /* Styles for the Best books section title */
  .faq-section .main-text h2 {
    font-weight: bold !important; /* Ensure bold is applied */
    font-size: 1.5rem !important; /* Increased font size to 20px */
    line-height: 1.5;
    color: #222; /* Ensure consistent text color */
}
.faq-section .main-text h2 .badge-orange-bg {
    font-weight: bold !important; /* Ensure bold is applied to badge */
    font-size: 1.5rem !important; /* Match the h2 font size (20px) */
    vertical-align: middle; /* Align the badge vertically */
    line-height: 1.5;
    padding:0px;
}
  /* Styles for the Best books section title */
  .best-books-section .main-text h2 {
      font-weight: bold !important; /* Ensure bold is applied */
      font-size: 1.5rem !important; /* Increased font size to 20px */
      line-height: 1.5;
      color: #222; /* Ensure consistent text color */
  }
  .best-books-section .main-text h2 .badge-orange-bg {
      font-weight: bold !important; /* Ensure bold is applied to badge */
      font-size: 1.5rem !important; /* Match the h2 font size (20px) */
      vertical-align: middle; /* Align the badge vertically */
      line-height: 1.5;
      padding:0px;
  }
  .best-books-section .main-text p {
      margin-bottom: -2rem; /* Reduced bottom margin for the paragraph */
  }

  .best-books-section .col-md-12 .main-text {
      margin-bottom: 2rem; /* Reduce bottom margin for the main-text div in the title column */
  }

  /* Styles for Best Books list entries */
  .best-books-section .book-entry {
      background-color: #faf9f0; /* Light yellow background */
      padding: 15px; /* Add some padding */
      margin-bottom: 20px; /* Space between entries */
      border-radius: 8px; /* Rounded corners */
      border-radius: 5px;
  }
  .best-books-section .book-entry h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry p {
      font-size: 0.9rem;
      line-height: 1.4;
      text-align: justify;
      margin-bottom: 10px;
  }
  .best-books-section .book-entry .download-icon {
      color: #d44000; /* Orange color for download icon */
      margin-right: 5px;
  }
  .best-books-section .book-entry .row .col-md-4 img,
  .best-books-section .book-entry .row .col-md-3 img {
      width: 100%;
      height: auto; /* Maintain aspect ratio */
      border-radius: 5px;
  }
  .contact-details {
    margin-bottom: 25px;
  }
  
  .contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .contact-icon {
    margin-left: 10px;
    color: #d44000;
  }
  
  .contact-label {
    font-weight: 600;
    margin-left: 5px;
  }
  
  .contact-value {
    font-weight: 400;
  }