/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/blog/blog.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* =====================================================
   Page Load & Scroll Animations for Blog Page
   ===================================================== */

/* Animation Keyframes */
@keyframes blogFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blogFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blogFadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blogScaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================================================
   HERO BANNER - Initial Page Load Animations
   ===================================================== */

/* Hero Content Animation */
.blog-page-animated .blog-hero-section .blog-hero-content h1 {
  animation: blogFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.blog-page-animated .blog-hero-section .blog-hero-content p {
  animation: blogFadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s
    backwards;
}

/* =====================================================
   SCROLL-TRIGGERED ANIMATIONS (Once only)
   ===================================================== */

/* Base state for all animatable sections - hidden initially */
.blog-page-animated .animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated state - visible */
.blog-page-animated .animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Featured Blog Card - scale animation */
.blog-page-animated .featured-blog-card.animate-section {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-page-animated .featured-blog-card.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Regular Blog Cards - staggered animation */
.blog-page-animated .regular-blog-card.animate-section {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-page-animated .regular-blog-card.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger blog cards */
.blog-page-animated .col-lg-6:nth-child(1) .regular-blog-card.animate-section {
  transition-delay: 0s;
}
.blog-page-animated .col-lg-6:nth-child(2) .regular-blog-card.animate-section {
  transition-delay: 0.1s;
}
.blog-page-animated .col-lg-6:nth-child(3) .regular-blog-card.animate-section {
  transition-delay: 0.15s;
}
.blog-page-animated .col-lg-6:nth-child(4) .regular-blog-card.animate-section {
  transition-delay: 0.2s;
}
.blog-page-animated .col-lg-6:nth-child(5) .regular-blog-card.animate-section {
  transition-delay: 0.25s;
}
.blog-page-animated .col-lg-6:nth-child(6) .regular-blog-card.animate-section {
  transition-delay: 0.3s;
}
.blog-page-animated .col-lg-6:nth-child(7) .regular-blog-card.animate-section {
  transition-delay: 0.35s;
}
.blog-page-animated .col-lg-6:nth-child(8) .regular-blog-card.animate-section {
  transition-delay: 0.4s;
}
.blog-page-animated .col-lg-6:nth-child(9) .regular-blog-card.animate-section {
  transition-delay: 0.45s;
}
.blog-page-animated .col-lg-6:nth-child(10) .regular-blog-card.animate-section {
  transition-delay: 0.5s;
}

/* Sidebar - slide in from right */
.blog-page-animated .blog-sidebar.animate-section {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

.blog-page-animated .blog-sidebar.animate-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Search Box */
.blog-page-animated .blog-search-box.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-page-animated .blog-search-box.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Categories Box */
.blog-page-animated .blog-categories-box.animate-section {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.1s;
}

.blog-page-animated .blog-categories-box.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Filters */
.blog-page-animated .mobile-blog-filters.animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-page-animated .mobile-blog-filters.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Pagination */
.blog-page-animated .respo-pagination.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.blog-page-animated .respo-pagination.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   REDUCE MOTION - Accessibility (Blog Listing)
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .blog-page-animated .blog-hero-section .blog-hero-content h1,
  .blog-page-animated .blog-hero-section .blog-hero-content p {
    animation: none;
  }

  .blog-page-animated .animate-section,
  .blog-page-animated .animate-section.animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   BLOG DETAILS PAGE ANIMATIONS
   ===================================================== */

/* Banner Title Animation - Initial Load */
.blog-details-animated .single-main-banner .inner-content h1 {
  animation: blogFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Base state for all animatable sections - hidden initially */
.blog-details-animated .animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated state - visible */
.blog-details-animated .animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Left Sidebar - Table of Contents */
.blog-details-animated .left-side.animate-section {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .left-side.animate-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Right Side - Main Content - NO animation to prevent visibility issues */
/* The right-side container is intentionally not animated as it can cause
   content to disappear on long blog posts. Individual elements within
   can be animated instead if needed. */

/* Views and Share Section */
.blog-details-animated .show-views.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .show-views.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Blog Content Sections - Disabled to prevent visibility issues on long posts */
/* These sections are part of the main content area and animating them
   can cause content to disappear. Left commented for reference. */
/*
.blog-details-animated .blog-single-post-content.animate-section {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .blog-single-post-content.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}
*/

/* CTA Box - Disabled to prevent visibility issues */
/*
.blog-details-animated .content-right-box.animate-section {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .content-right-box.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
*/

/* FAQ Section */
.blog-details-animated .faq-section.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .faq-section.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion Items */
.blog-details-animated .faq-section .accordion-item.animate-section {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .faq-section .accordion-item.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger FAQ items */
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(1)
  .accordion-item.animate-section {
  transition-delay: 0s;
}
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(2)
  .accordion-item.animate-section {
  transition-delay: 0.1s;
}
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(3)
  .accordion-item.animate-section {
  transition-delay: 0.15s;
}
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(4)
  .accordion-item.animate-section {
  transition-delay: 0.2s;
}
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(5)
  .accordion-item.animate-section {
  transition-delay: 0.25s;
}
.blog-details-animated
  .faq-section
  .col-lg-10:nth-child(6)
  .accordion-item.animate-section {
  transition-delay: 0.3s;
}

/* Author Section */
.blog-details-animated .Hermit-Chawla .content-row.animate-section {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-details-animated .Hermit-Chawla .content-row.animate-section.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =====================================================
   REDUCE MOTION - Accessibility (Blog Details)
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .blog-details-animated .single-main-banner .inner-content h1 {
    animation: none;
  }

  .blog-details-animated .animate-section,
  .blog-details-animated .animate-section.animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   End Page Load & Scroll Animations
   ===================================================== */

.com-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-playfair-display), "Playfair Display", serif; */
}

ul.content-stick-scroll.show-table-content.toggle-table-content {
  display: block;
}

.custom-post-contents .single-post .right-side a {
  color: #ab8736;
}

.custom-post-contents #categoryDropdown {
  width: 130px;
}

.custom-post-contents ul.choice-points.custm-ul.sm-p-lr-10 li {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 28px;
}

.custom-post-contents
  .single-post
  .right-side
  .blog-single-post-content.quick-summery {
  padding: 40px;
  margin: 20px 0 30px;
  background: #f4f4f4;
  border-left: 5px solid rgb(54 45 134/9%);
  position: relative;
}

.custom-post-contents
  .single-post
  .right-side
  .blog-single-post-content.quick-summery
  .content-right-title {
  font-size: 30px;
  line-height: 40px !important;
  margin-bottom: 18px !important;
  font-weight: 700 !important;
  color: #ab8736;
}

.custom-post-contents .content .right-side .content-right-title,
.custom-post-contents .content .right-side h3.content-right-title {
  color: #ab8736 !important;
}

.custom-post-contents .content .container .row h2.content-right-title {
  font-weight: 700 !important;
  font-size: 26px !important;
}

.custom-post-contents .content .container .custome-list-wrapper li {
  list-style: circle;
  margin-bottom: 5px;
  margin-left: 20px;
}

.custom-post-contents .list-with-bold strong {
  color: #ab8736 !important;
}

.custom-post-contents section.content .container .content-stick-scroll {
  padding-right: 20px;
}

.custom-post-contents .what-we-promise .inner-content .left-text h2 {
  line-height: 55px;
}

.custom-post-contents h2.com-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 50px;
  color: #ab8736;
  margin-bottom: 0px;
}

.custom-post-contents .small-title {
  font-weight: 600;
  font-size: 20px;
  line-height: inherit;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 20px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

/* .py-50 {
    padding: 50px 0px;
  } */

.custom-post-contents p.com-para {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

.custom-post-contents .bg-gray {
  background: #f9f9f9;
}

.custom-post-contents .btn-primary,
.custom-post-contents .btn-primary:focus {
  background-color: #ab8736 !important;
  border-color: #ab8736 !important;
  box-shadow: none !important;
  padding: 15px 30px !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0 !important;
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
}

.custom-post-contents .btn-primary::after,
.custom-post-contents .val-clients .btn:after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -110px;
  background-color: #fff6 !important;
  height: 100% !important;
  width: 100% !important;
  opacity: 0 !important;
  transition: 1s ease-in-out all !important;
}

.custom-post-contents .btn-primary:hover::after,
.custom-post-contents .val-clients .btn:hover:after {
  opacity: 1 !important;
  left: 100% !important;
  transition: 1s ease-in-out all !important;
}

.custom-post-contents .btn-primary:focus:hover,
.custom-post-contents .btn-primary:hover {
  color: #fff !important;
  background-color: #8a6b2a !important;
  border-color: #8a6b2a !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-post-contents .single-main-banner {
  position: relative;
  margin-top: -110px !important;
  background: #ab8736;
  background-size: cover;
  background-repeat: no-repeat;
}

.custom-post-contents .single-main-banner-bg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-post-contents .single-main-banner .inner-content h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  line-height: 122%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.custom-post-contents .single-main-banner .inner-content p.com-para {
  color: #ffffff;
}

.custom-post-contents .blog-tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-post-contents .blog-tab-row .search-bar {
  position: relative;
}

.custom-post-contents .blog-tab-row .search-bar input {
  background: #d9d9d9;
  border-radius: 50px;
  outline: none;
  height: 40px;
  border: 0;
  padding: 0 6px;
}

.custom-post-contents .our-work-tabs {
  background: #f9f9f9;
}

.custom-post-contents .our-work-tabs .nav.nav-pills {
  gap: 25px 30px;
}

.custom-post-contents .our-work-tabs .nav.nav-pills .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  border-bottom: 2px solid #f9f9f9;
  border-radius: 0px;
}

.custom-post-contents .our-work-tabs .nav.nav-pills .nav-link.active {
  border-bottom: 2px solid #ab8736;
  color: #ab8736;
}

.custom-post-contents .our-work-tabs .tab-content .our-work-card {
  background: #ffffff;
  height: 100%;
  border: 1px solid #e2e2e2;
}

.custom-post-contents .our-wrok-footer .profile-date-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin: 28px 0;
}

.custom-post-contents .our-wrok-footer .profile-date-row img {
  width: 30px;
  height: 30px;
}

.custom-post-contents .our-wrok-footer .profile-date-row span {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}

.custom-post-contents .our-wrok-footer p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer {
  padding: 0 22px;
}

.custom-post-contents .Technology-text {
  border-top: 1px solid #e2e2e2;
  padding: 20px;
  margin-top: 27px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .small-title {
  margin-top: 0px;
  margin-bottom: 10px;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .cate-wrap
  li {
  margin-bottom: 26px;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .cate-wrap
  .cat-name {
  display: inline-block;
  min-width: 90px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4d4d4d;
  margin-right: 45px;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .cate-wrap
  .car-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .apply-now-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ab8736;
  display: block;
}

.custom-post-contents
  .our-work-tabs
  .tab-content
  .our-work-card
  .our-wrok-footer
  .apply-now-link
  img {
  padding-left: 10px;
  min-width: 30px;
  min-height: 30px;
}

.custom-post-contents .pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.custom-post-contents .pagenation ul li {
  width: 54px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ab8736;
  color: #ab8736;
  cursor: pointer;
}

.custom-post-contents .pagenation ul li:hover {
  background: #ab8736;
  color: #fff;
}

.custom-post-contents .what-we-promise {
  background: #ab8736;
  /* background-image: url("../images/blog-img/subscribe-bg.webp"); */
  background-position: bottom right;
  background-repeat: no-repeat;
}

.custom-post-contents .what-we-promise .tag-line-sub {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  margin-top: 30px;
}

.custom-post-contents .what-we-promise .tag-line-sub strong a {
  text-decoration: underline !important;
  color: #ffffff !important;
  padding-bottom: 5px;
}

.custom-post-contents .what-we-promise input {
  background-color: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid #ffffff;
  height: 55px;
  outline: none;
}

.custom-post-contents .what-we-promise input::placeholder {
  color: #fff;
}

.custom-post-contents .what-we-promise .Subscribe-button {
  display: inline-block;
  background-color: #fff;
  padding: 17px 55px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ab8736;
  margin-top: 45px;
}

.custom-post-contents .send-mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.custom-post-contents .what-we-promise .inner-content .left-text h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
}

.custom-post-contents .what-we-promise .inner-content .left-text p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
}

.custom-post-contents .what-we-promise .inner-content .left-text h2 span {
  color: #ab8736;
}

.custom-post-contents .what-we-promise .inner-content .our-promise li {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  margin-bottom: 20px;
}

.custom-post-contents .what-we-promise .inner-content .our-promise li span {
  width: 10px;
  height: 10px;
  background: #ab8736;
  transform: rotate(-45deg);
  display: inline-block;
  margin-right: 15px;
}

.custom-post-contents .what-we-promise .inner-content .promise-btn {
  border: 1px solid #ab8736;
  padding: 17px 32px;
  color: #ab8736;
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

.custom-post-contents section.footer-form .footer-content .text-white {
  color: #fff;
}

.custom-post-contents section.footer-form .all-btns {
  padding: 17px 30px;
  color: #ab8736;
  background: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-top: 30px;
  border-radius: 0px;
}

.custom-post-contents .content {
  padding: 40px 0;
}

.custom-post-contents .content .left-side h3 {
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 20px;
  line-height: 24px;
  color: #ab8736;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

.custom-post-contents .content .ref-listing ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0.5rem;
}

.custom-post-contents .content .ref-listing ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.5);
  list-style: disc;
  margin-left: 20px;
  width: 45%;
}

.custom-post-contents .content .design-with-q li {
  position: relative;
}

.custom-post-contents .content .design-with-q li::before {
  content: "";
  position: absolute;
  display: block;
  height: 102%;
  top: 0;
  left: 11px;
  border-left: 2px solid #000;
  margin-top: 2%;
}

.custom-post-contents .content .design-with-q li:last-child:before {
  display: none;
}

.custom-post-contents .content .design-with-q li .q-span {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  font-size: 13px;
  text-align: center;
  margin-right: 15px;
  padding-top: 2px;
  background-color: #f7f7f7;
  position: relative;
}

.custom-post-contents .content .design-with-q li p {
  padding-left: 45px;
}

.content-right-box {
  background-color: #3030941a;
  padding: 24px 32px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.custom-post-contents .content-right-box ul li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  margin-bottom: 0px;
}

.custom-post-contents .content-right-box ul li p.first-para {
  font-size: 20px;
  font-weight: 600;
}

.custom-post-contents .content .left-side ul li.first-li button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  position: relative;
}

.custom-post-contents .content .left-side ul li.first-li button::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #ddbc6e -9.35%, #ab8736 99.99%);
  left: -22px;
  top: 5.5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.custom-post-contents .content .left-side ul li.first-li button::before {
  content: "";
  left: -25px;
  top: 3px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #ab8736;
}

.custom-post-contents .content .left-side ul li button {
  line-height: inherit;
  margin-bottom: 10px;
  text-align: left;
  background: none;
  border: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}

.custom-post-contents .small-dots {
  position: relative;
  margin-left: 15px;
}

.custom-post-contents .small-dots::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #ddbc6e -9.35%, #ab8736 99.99%);
  left: -15px;
  top: 5px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

.custom-post-contents .content .right-side .content-right-title {
  font-weight: 600 !important;
  font-size: 20px;
  line-height: inherit;
  color: #000;
  scroll-margin-top: 5rem;
  margin-bottom: 10px;
}

.custom-post-contents .faq-section .accordion-item .accordion-button {
  font-family: var(--font-lora), "Lora", serif !important;
  /* font-family: DM Sans, sans-serif !important; */
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  color: #333333 !important;
}

.custom-post-contents
  .faq-section
  .accordion-item
  .accordion-button:not(.collapsed) {
  color: #ab8736 !important;
}

.custom-post-contents .content .right-side h3.content-right-title {
  font-size: 18px;
}

.custom-post-contents .content .right-side .design-with-q {
  margin-top: 10px;
}

.custom-post-contents .content .right-side .content-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: rgb(0 0 0);
}

.custom-post-contents .techinal-stack {
  /* max-height: 700px;
    overflow-y: auto; */
  position: relative;
}

.custom-post-contents .techinal-stack .container .left-side-content {
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}

.custom-post-contents .faq-section .faq-left-side {
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}

.custom-post-contents section.content .container .left-side {
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
  margin-bottom: 4rem;
}

.custom-post-contents section.content .container .left-side h3 {
  margin-bottom: 30px !important;
  margin-top: 39px !important;
}

.custom-post-contents .faq-section .container .faq-left-side h2.com-title {
  margin-bottom: 20px;
}

.custom-post-contents section.content .com-title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  color: #fff;
}

.custom-post-contents section.content .container .content-stick-scroll {
  max-height: 330px;
  overflow-y: auto;
}

.custom-post-contents
  section.content
  .container
  .content-stick-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-post-contents
  section.content
  .container
  .content-stick-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
  overflow: hidden;
}

.custom-post-contents
  section.content
  .container
  .content-stick-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ddbc6e -9.35%, #ab8736 99.99%);
}

.custom-post-contents
  section.content
  .container
  .content-stick-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.custom-post-contents section.content .container .content-stick-scroll li {
  direction: ltr !important;
  text-align: left;
  padding-left: 25px;
  padding-bottom: 1px;
}

.custom-post-contents .faq-section .com-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #ab8736;
  margin-bottom: 40px;
}

.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button {
  border: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  padding: 20px 0 20px 50px;
  border-bottom: 0;
  position: relative;
}

/* Active/Open state - golden color */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed) {
  color: #ab8736;
  background: transparent;
  border-bottom: 0;
}

/* Hide Bootstrap's default arrow (::after) */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button::after {
  display: none !important;
}

/* Plus/Minus Icon on the left using ::before */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button::before {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background-image: none;
  content: "+";
  font-size: 28px;
  font-weight: 300;
  line-height: 20px;
  color: #ab8736 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Minus icon when opened */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed)::before {
  content: "−";
  color: #ab8736 !important;
  font-weight: 400;
}

.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button:focus {
  box-shadow: none;
}

.custom-post-contents .faq-section .accordion.accordion-flush .accordion-body {
  padding: 20px 0 20px 50px;
  border-bottom: 1px solid #e0e0e0;
}

/* Golden border when accordion is open */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-collapse.show
  .accordion-body {
  border-bottom: 2px solid #ab8736;
}

.custom-post-contents .accordion-item {
  border: 0 !important;
  background: transparent;
  border-bottom: 1px solid #e0e0e0;
}

/* Remove border from accordion-item when it's open (border will be on body instead) */
.custom-post-contents
  .faq-section
  .accordion-flush
  .accordion-item:has(.accordion-collapse.show) {
  border-bottom: 0;
}

.custom-post-contents .Forgot-this-post {
  padding-top: 0 !important;
}

.custom-post-contents .Forgot-this-post .forget-post {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.custom-post-contents .Forgot-this-post .forget-post .title-text {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 32px;
  color: #ab8736;
}

.custom-post-contents .Forgot-this-post .forget-post .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.right-align.social-icons {
  display: flex;
  justify-content: end;
  gap: 14px;
  padding: 8px 0;
}

.viewcount {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.viewcount .viewcount-number {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sppker {
  color: white;
  background: #ab8736;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.show-views {
  display: flex;
  justify-content: space-between;
  color: #ab8736;
}

p.com-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #ab8736;
}

.shareicons {
  display: flex;
  justify-items: center;
  gap: 10px;
  color: #ab8736;
}

.custom-post-contents .Hermit-Chawla .content-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.custom-post-contents .Hermit-Chawla .content-row picture {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  min-width: 200px;
}

.custom-post-contents .Hermit-Chawla .content-row picture img {
  width: 200px;
  height: 200px;
}

.custom-post-contents .Hermit-Chawla .content-row picture::before {
  content: "";
  /*position: absolute;*/
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background-color: #ab8736;
  z-index: -1;
}

.custom-post-contents .Hermit-Chawla .content-row picture::after {
  content: "";
  /*position: absolute;*/
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background-color: #ab8736;
  z-index: -1;
}

.custom-post-contents
  .Hermit-Chawla
  .content-row
  .hearmit-chawla-inner-content
  .com-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  text-align: start;
  color: #ab8736;
  margin-bottom: 10px;
}

.custom-post-contents .blogs .com-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #ab8736;
  margin-bottom: 34px;
}

.custom-post-contents .blogs .our-wrok-footer .profile-date-row .icons-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.custom-post-contents
  .blogs
  .our-wrok-footer
  .profile-date-row
  .icons-text
  .blogs-button {
  background: #ab8736;
  padding: 5px 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 35px;
  color: #ffffff;
}

.custom-post-contents .blogs .our-wrok-footer .profile-date-row {
  margin: 20px 0;
}

.custom-post-contents
  .blogs
  .our-wrok-footer
  .profile-date-row
  .icons-text
  span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
}

.custom-post-contents .blogs .our-wrok-footer .com-para {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.custom-post-contents ul.choice-points.custm-ul.sm-p-lr-10 li {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  position: relative;
  padding: 0 0 10px 25px !important;
}

.custom-post-contents .custm-ul li:after {
  content: "";
  width: 5px !important;
  height: 5px !important;
  display: inline-block;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 5px !important;
  background: #ab8736;
  border: 4px solid #ddd;
  border-radius: 50px;
  padding: 4px;
}

.custom-post-contents .main-page-wrapper {
  overflow: visible !important;
}

.blog-action-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 33px !important;
  color: #000 !important;
}

.blog-content-title-sub {
  font-weight: 700;
  font-size: 18px;
  color: #ab8736;
  margin-top: 1rem;
}

.blog-content-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  font-weight: 700;
  font-size: 26px;
  color: #ab8736;
  margin-top: 25px;
  margin-bottom: 10px;
}

.our-blog.similar-blog .title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #ab8736;
  margin-bottom: 34px;
}

.our-blog.similar-blog .our-blog-card .blog-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.our-blog.similar-blog .our-blog-card .blog-header .blog-bag {
  background: #ab8736;
  padding: 5px 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 35px;
  color: #ffffff;
  display: inline-block;
}

.our-blog.similar-blog .our-blog-card .blog-header .date {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.8);
}

.our-blog.similar-blog .our-blog-card .para-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.our-port .nav-pills {
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 10px;
}

.our-port .nav-pills .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333;
  border-bottom: 2px solid #f9f9f9;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.our-port .nav-pills .nav-link.active {
  border-bottom: 2px solid #ab8736;
  color: #ab8736;
  font-weight: 700;
  background: transparent;
}

.our-port .tab-content .our-work-card {
  background: #fff;
  box-shadow: 0px 0px 44px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.our-port .tab-content .our-work-card .our-wrok-footer {
  padding: 20px;
}

.our-port .tab-content .our-work-card .our-wrok-footer .small-title {
  font-weight: 600;
  font-size: 26px;
  line-height: inherit;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}

.our-port .tab-content .our-work-card .our-wrok-footer .cate-wrap .cat-name {
  display: inline-block;
  min-width: 90px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #4d4d4d;
  margin-right: 45px;
}

.our-port .tab-content .our-work-card .our-wrok-footer .cate-wrap .car-value {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

.our-port .tab-content .our-work-card .our-wrok-footer .apply-now-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ab8736;
  display: flex;
  align-items: center;
}

.our-port .tab-content .our-work-card .our-wrok-footer .apply-now-link span {
  display: flex;
}

.our-port .tab-content .our-work-card .our-wrok-footer .apply-now-link img {
  padding-left: 10px;
  min-width: 30px;
  min-height: 30px;
}

.our-port .tab-content .our-work-card .our-wrok-footer .cate-wrap ul {
  margin-bottom: 10px;
}

.our-port .tab-content .our-work-card .work-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.our-port .pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.our-port .pagenation ul li {
  width: 54px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ab8736;
  color: #ab8736;
  cursor: pointer;
}

.our-port .pagenation ul li .page-numbers {
  font-size: 26px;
  color: #000;
  font-weight: 500;
}

.our-port .pagenation ul li a,
.our-port .pagenation ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.our-port .pagenation ul li:hover,
.our-port .pagenation ul li.selected {
  background: #ab8736;
  color: #fff;
}

.our-port .pagenation ul li:hover .page-numbers,
.our-port .pagenation ul li.selected .page-numbers {
  color: #fff;
}

.our-port .pagenation ul li .prev,
.our-port .pagenation ul li .next {
  font-size: 45px;
}

.table-wrapper .left-side h3 {
  margin-bottom: 30px;
  margin-top: 39px;
  font-size: 20px;
}

.table-content-title1 {
  color: #000;
  font-weight: 400 !important;
  font-size: 38px !important;
  line-height: 40px !important;
  font-family: var(--font-lora), "Lora", serif !important;
  /* font-family: "Playfair Display", serif !important; */
}

@media only screen and (min-width: 1024px) {
  .content-desc ul {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .custom-post-contents .Hermit-Chawla .content-row picture {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    min-width: 90px;
  }

  .custom-post-contents .Hermit-Chawla .content-row picture img {
    width: 90px;
    height: 90px;
  }

  .custom-post-contents .content {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .table-content-title1 {
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 28px !important;
    line-height: 40px !important;
    font-family: var(--font-lora), "Lora", serif !important;
    /* font-family: "Playfair Display", serif !important; */
  }
  ul.content-stick-scroll.show-table-content.toggle-table-content {
    display: none;
  }

  .custom-post-contents .single-main-banner {
    margin-top: -70px !important;
  }

  .custom-post-contents .what-we-promise .inner-content .left-text h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
  }

  .custom-post-contents .custom-post-contents :not([href])[id]:before {
    display: none;
  }

  .custom-post-contents .Hermit-Chawla .content-row {
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .custom-post-contents .hearmit-chawla-inner-content p.com-para {
    display: block;
    text-align: center !important;
  }

  .custom-post-contents
    .Hermit-Chawla
    .content-row
    .hearmit-chawla-inner-content
    .com-title {
    text-align: center;
  }

  .custom-post-contents .content .left-side ul li.first-li button {
    width: 100%;
  }

  .custom-post-contents .top-header-nw .top-right-block {
    padding: 10px 0 10px 5px;
  }

  .custom-post-contents .read-more-box .readmore-heading {
    font-size: 20px !important;
  }

  .custom-post-contents .read-more-box .readmore-link a {
    font-size: 16px !important;
  }

  .custom-post-contents .content .left-side h3 {
    color: #fff;
  }

  .custom-post-contents .table-content-mobile {
    background: #ab8736;
    border-radius: 5px;
    padding: 13px 20px;
    position: relative;
  }

  .custom-post-contents .table-content-mobile::after {
    content: "";
    position: absolute;
    right: 24px;
    z-index: 11;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(225deg);
    top: 30%;
  }

  .custom-post-contents .content .left-side ul li.first-li button {
    background: #f9f9f9;
    border-radius: 5px;
    padding: 14px 15px;
    width: 100%;
    position: relative;
  }

  .custom-post-contents .content .left-side ul li.first-li button::before,
  .custom-post-contents .content .left-side ul li.first-li button::after {
    display: none;
  }

  .custom-post-contents .content .left-side ul li.first-li {
    padding-left: 0;
  }

  .custom-post-contents section.content .container .content-stick-scroll {
    max-height: unset;
    padding-right: 0;
  }

  .custom-post-contents .single-main-banner-bg {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .custom-post-contents .single-main-banner .inner-content h1 {
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
  }

  .custom-post-contents
    .single-post
    .right-side
    .blog-single-post-content.quick-summery
    .content-right-title,
  .custom-post-contents .content .container .row h2.content-right-title {
    font-size: 20px !important;
  }

  .custom-post-contents .Forgot-this-post .forget-post {
    padding: 20px;
    justify-content: center;
  }

  .custom-post-contents .Forgot-this-post .forget-post .social-icons {
    margin-top: 20px;
  }

  .custom-post-contents .send-mail-button {
    flex-wrap: wrap;
  }

  .custom-post-contents .what-we-promise .Subscribe-button {
    margin-top: 0;
  }

  .our-blog.similar-blog .our-blog-card .para-text {
    font-size: 18px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .custom-post-contents
    .single-post
    .right-side
    .blog-single-post-content.quick-summery {
    padding: 20px;
  }

  .custom-post-contents
    .single-post
    .right-side
    .blog-single-post-content.quick-summery
    .content-right-title,
  .custom-post-contents .content .container .row h2.content-right-title {
    font-size: 20px !important;
  }

  .custom-post-contents .content {
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .custom-post-contents .Forgot-this-post .forget-post {
    border-radius: 6px;
    padding: 8px;
  }

  .custom-post-contents .Forgot-this-post .forget-post .social-icons {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 480px) {
  .custom-post-contents .single-main-banner {
    margin-top: -65px !important;
  }
}

.custom-post-contents .pagination.mt-5.pb-5 ul li a:hover {
  color: #fff;
}

.blog-single-post-content .content-desc ul li {
  position: relative;
  padding-left: 32px !important;
}

.content-desc ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 8px;
  right: 0;
  top: 7px;
  background: #ab8736;
  border: 4px solid #ddd;
  border-radius: 50px;
  padding: 4px;
}

.blog-single-post-content .content-desc table {
  height: max-content;
  width: 700px;
  border: 1px solid black;
}

.blog-single-post-content .table-responsive .subcontent-image {
  width: 100%;
  margin: 15px 0px 0px 0px;
}

.blog-single-post-content .table-responsive .contentss {
  margin: 15px 0px;
}

.blog-single-post-content .content-desc table td {
  border: 1px solid black;
  padding: 12px;
  /* height: max-content;
    max-height: 150px !important;  */
}

section.our-blog.similar-blog {
  padding-bottom: clamp(40px, 6vw, 80px);
}

@media (max-width: 480px) {
  .shareicons {
    display: flex;
    flex-direction: column;
    color: #ab8736;
    gap: 0px;
  }

  .viewcount {
    display: flex;
    flex-direction: column;
    color: #ab8736;
    gap: 0px;
    align-items: flex-start;
  }

  .show-views {
    align-items: flex-start;
  }
}

.blog-wrapper .single-main-banner {
  background: #ab8736;
}

.blog-wrapper .single-main-banner .main-title {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 3.1vw, 35px);
  line-height: clamp(24px, 3.1vw, 43px);
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  padding-block: 100px;
}

.breadcrum-bar {
  color: #606060;
  padding-block: 24px;
  flex-wrap: wrap;
}

.breadcrum-bar a,
.breadcrum-bar a:hover {
  font-weight: 500;
  color: #606060;
  transition: 0.5s all;
}

.light-submenu {
  padding-inline: 8px;
  font-weight: 300;
}

.blog-title-slug {
  color: #1c1a31;
  padding-inline: 8px;
}

.table-wrapper h3.small-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #ab8736;
  margin-bottom: 30px;
  margin-top: 39px;
}

.table-wrapper .left-side {
  position: -webkit-sticky;
  position: sticky;
  top: 8rem;
}

.table-wrapper .content-stick-scroll {
  padding-right: 8px;
  padding-left: 0;
  max-height: 330px;
  overflow-y: auto;
  margin-right: 12px;
}

.table-wrapper .content-stick-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ddbc6e -9.35%, #ab8736 99.99%);
}

.table-wrapper .content-stick-scroll::-webkit-scrollbar {
  width: 4px;
}

.table-wrapper .content-stick-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
  overflow: hidden;
}

.table-wrapper .blog-single-post-content ul li,
.table-wrapper .content-stick-scroll .first-li {
  direction: ltr;
  text-align: left;
  padding-left: 25px;
  padding-bottom: 1px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #333;
  position: relative;
  margin-bottom: 10px;
}

.table-wrapper .content-stick-scroll .first-li.click-btn {
  cursor: pointer;
}

.table-wrapper .content-stick-scroll .first-li:before {
  content: "";
  left: 0px;
  top: 3px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #ab8736;
}

.table-wrapper .blog-single-post-content ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  background: #ab8736;
  border: 4px solid #ddd;
  border-radius: 50px;
  padding: 4px;
}

.table-wrapper .content-stick-scroll .first-li:after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #ddbc6e -9.35%, #ab8736 99.99%);
  left: 3px;
  top: 5.5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.show-views {
  display: flex;
  justify-content: space-between;
  color: #ab8736;
  margin-bottom: 12px;
}

.viewcount {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.sppker {
  color: #fff;
  background: #ab8736;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.viewcount .viewcount-number {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shareicons {
  display: flex;
  justify-items: center;
  gap: 10px;
  color: #ab8736;
  align-items: center;
}

.right-align.social-icons {
  display: flex;
  justify-content: end;
  gap: 14px;
  padding: 8px 0;
}

.table-wrapper .blog-single-post-content .quick-summery {
  padding: 40px;
  margin: 20px 0 30px;
  background: rgb(54 45 134 / 7%);
  border-left: 5px solid rgb(54 45 134 / 9%);
  position: relative;
  margin-bottom: 32px;
}

.table-wrapper h3,
.table-wrapper .blog-single-post-content .blog-content-title {
  font-size: clamp(22px, 2.1vw, 26px);
  font-weight: 700;
  color: #ab8736;
  margin-top: 16px;
}

.table-wrapper .blog-single-post-content .content-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

.table-wrapper .blog-single-post-content .content-desc a {
  color: #ab8736;
}

.content-desc ol li {
  list-style-type: decimal;
}

/* Faq Css Start From Here  */
.faq-section.blog-faq .com-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #ab8736;
  margin-bottom: 50px;
  text-align: center;
}

.faq-section.blog-faq .accordion-item {
  border: none;
  margin-bottom: 20px;
}

.faq-section.blog-faq .accordion-item .accordion-button {
  border: 0;
  background: #f9f9f9;
  border-radius: 10px;
  font-style: normal;
  line-height: 140%;
  color: #ab8736;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}

.faq-section.blog-faq .accordion-item .accordion-body {
  padding-left: 20px;
}

/* Auther Css Start From here  */

.auther-wrapper .content-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.auther-wrapper .content-row .img-box {
  width: 202px;
  height: 202px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 202px;
  width: 100%;
}

.auther-wrapper .content-row .img-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.auther-wrapper .content-row .auther-inner-content {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% - 202px - 50px);
}

.auther-wrapper .content-row .com-title {
  font-weight: 600;
  font-size: clamp(21px, 3.1vw, 45px);
  line-height: clamp(28px, 3.1vw, 54px);
  color: #ab8736;
  margin-bottom: 0;
}

.auther-wrapper .content-row p.com-para {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

@media (min-width: 1024px) {
  .content-desc ul {
    padding-left: 25px;
    margin-block: 8px;
  }
}

@media (max-width: 767px) {
  .auther-wrapper .content-row {
    flex-direction: column;
  }

  .auther-wrapper .content-row p.com-para,
  .auther-wrapper .content-row .com-title,
  .auther-wrapper .content-row .img-box {
    text-align: center;
  }

  .blog-wrapper .single-main-banner .main-title {
    padding-block: 60px;
  }

  .shareicons,
  .viewcount {
    display: flex;
    flex-direction: column;
    color: #ab8736;
    gap: 0;
  }

  .viewcount {
    align-items: flex-start;
  }

  .table-wrapper .blog-single-post-content .quick-summery {
    padding: 20px;
  }

  .table-wrapper .blog-single-post-content .blog-content-title {
    font-size: 24px;
  }

  .table-wrapper .table-content-mobile:after {
    content: "";
    position: absolute;
    right: 24px;
    z-index: 11;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(225deg);
    top: 30%;
  }

  .table-wrapper .table-content-mobile {
    background: #ab8736;
    border-radius: 5px;
    padding: 13px 20px;
    position: relative;
  }

  .table-wrapper .left-side h3 {
    color: #fff;
  }

  .table-wrapper .content-stick-scroll {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-height: unset;
    margin: 0;
  }

  .table-wrapper .content-stick-scroll .first-li.first-li {
    background: #f9f9f9;
    border-radius: 5px;
    padding: 8px 4px 8px 16px;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }

  .table-wrapper .content-stick-scroll .first-li::before,
  .table-wrapper .content-stick-scroll .first-li::after {
    display: none;
  }

  .table-wrapper .content-stick-scroll {
    padding-right: 0;
  }

  .table-wrapper .blog-single-post-content ul {
    padding-left: 8px;
    margin-block: 8px;
  }

  .our-port .nav-pills .nav-link {
    padding-inline: 0;
    font-size: 16px;
  }

  /* Mobile FAQ accordion adjustments */
  .custom-post-contents
    .faq-section
    .accordion-flush
    .accordion-item
    .accordion-button {
    padding: 16px 0 16px 40px;
    font-size: 15px;
  }

  .custom-post-contents
    .faq-section
    .accordion-flush
    .accordion-item
    .accordion-button::before {
    width: 20px;
    height: 20px;
    font-size: 24px;
    left: 0;
  }

  .custom-post-contents
    .faq-section
    .accordion.accordion-flush
    .accordion-body {
    padding: 16px 0 16px 40px;
  }

  .custom-post-contents .faq-section .com-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}

.custom-post-contents.author-details .single-main-banner {
  height: 172px;
}

.custom-post-contents.author-details .single-main-banner .sunny-chawla {
  display: flex;
  min-height: 250px;
  height: 100%;
  padding-top: 73px;
  gap: 40px;
  float: left;
  width: 100%;
}

.custom-post-contents.author-details
  .single-main-banner
  .sunny-chawla-inner-content {
  padding-top: 100px;
  margin-top: 25px;
}

.custom-post-contents.author-details
  .single-main-banner
  .sunny-chawla-inner-content
  .sunny-chawla-inner-top-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.sunny-chawla-inner-content .sunny-chawla-inner-top-content .com-title {
  font-weight: 600;
  font-size: 45px;
  line-height: 54px;
  color: #ab8736;
}

.custom-post-contents.author-details
  .single-main-banner
  .sunny-chawla-inner-content
  .com-para.author-para {
  color: #ab8736;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 0;
}

.respo-pagination {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.respo-pagination .page-item.active .page-link {
  background: #ab8736;
  border-color: #ab8736;
  color: #ffffff;
}

.respo-pagination .page-item .page-link {
  padding: 10px 18px;
  font-size: 18px;
  color: #333333;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.respo-pagination .page-item .page-link:hover {
  background: #ab8736;
  border-color: #ab8736;
  color: #ffffff;
}

.respo-pagination .page-link:focus {
  box-shadow: none;
}

.custom-post-contents.author-details .sunny-chawla-dec {
  float: left;
  width: 100%;
  margin-top: clamp(25px, 6vw, 40px);
  margin-bottom: clamp(32px, 6vw, 50px);
}

.custom-post-contents.author-details .sunny-chawla-dec p:last-child {
  margin-bottom: 0;
}

.custom-post-contents
  .our-blog.similar-blog.author-similar-blog
  .our-blog-card
  .blog-header
  .blog-bag {
  padding: 1px 18px;
}

.custom-post-contents.author-blog-details .single-main-banner-bg {
  padding-top: 40px;
  padding-bottom: 40px;
}

.custom-post-contents.author-blog-details
  .single-main-banner-bg
  .inner-content
  h1 {
  font-size: 24px;
  line-height: 29px;
}

.custom-post-contents.author-blog-details .what-we-promise {
  background-image: unset;
}

.custom-post-contents.author-blog-details .send-mail-button {
  margin: 30px 0;
}

.custom-post-contents.author-blog-details .send-mail-button #subscribe_email {
  min-width: 300px;
}

.custom-post-contents.author-blog-details .send-mail-button .Subscribe-button {
  margin-top: 0;
}

.custom-post-contents.author-blog-details
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button {
  padding: 25px 70px;
}

.custom-post-contents.author-blog-details
  .faq-section
  .accordion-flush
  .accordion-item
  .accordion-button::after {
  left: 5px !important;
}

.custom-post-contents.author-blog-details
  .faq-section
  .accordion-item
  .accordion-button {
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 25px !important;
  color: #ab8736 !important;
}

.custom-post-contents.author-blog-details
  .faq-section
  .accordion.accordion-flush
  .accordion-body {
  padding-top: 0;
}

.custom-post-contents.author-blog-details .right-side .content-right-box {
  background: #ab8736;
  border-radius: 0;
}

.custom-post-contents.author-blog-details
  .content-right-box
  ul
  li
  p.first-para {
  color: #fff;
}

.custom-post-contents.author-blog-details .btn-primary:hover,
.custom-post-contents.author-blog-details .btn-primary,
.custom-post-contents.author-blog-details .btn-primary:focus {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #ab8736 !important;
}

.custom-post-contents.author-blog-details
  .content-right-box
  ul
  li
  p.first-para {
  font-weight: 400;
}

.custom-post-contents.author-blog-details
  .content-right-box
  ul
  li
  p.first-para
  strong {
  font-weight: 700;
}

.custom-post-contents.author-blog-details .blog-author-section .sunny-chawla {
  display: flex;
  align-items: center;
  gap: 40px;
}

.custom-post-contents.author-blog-details
  .blog-author-section
  .sunny-chawla
  .sunny-chawla-inner-top-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.custom-post-contents.author-blog-details
  .sunny-chawla-inner-content
  .sunny-chawla-inner-top-content
  .com-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 42px;
  color: #ab8736;
}

.custom-post-contents.author-blog-details
  .sunny-chawla-inner-content
  .com-para.author-para {
  color: #ab8736;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 0;
}

.custom-post-contents.author-blog-details .offset-left {
  margin-left: 50px;
}

@media (min-width: 1280) and (max-width: 1400px) {
  .our-port .nav-pills .nav-link {
    font-size: 16px;
    -webkit-padding-start: 8px;
            padding-inline-start: 8px;
  }
}

@media only screen and (max-width: 1199px) {
  .custom-post-contents.author-blog-details .offset-left {
    margin-left: 0;
  }
}

@media (min-width: 1190px) {
  .blog-wrapper .single-main-banner {
    min-height: 400px;
  }
  .custom-post-contents .single-main-banner-bg {
    min-height: 400px;
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla
    .sunny-chawla-img
    img {
    width: 150px;
    height: 150px;
  }

  .custom-post-contents.author-details .single-main-banner {
    height: 120px;
  }

  .custom-post-contents.author-details .single-main-banner .sunny-chawla {
    padding-top: 60px;
  }

  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla-inner-content
    .sunny-chawla-inner-top-content {
    gap: 10px;
  }

  .sunny-chawla-inner-content .sunny-chawla-inner-top-content .com-title {
    font-size: 24px;
    line-height: 31px;
  }

  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla-inner-content {
    padding-top: 75px;
    margin-top: 0;
  }

  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla-inner-content
    .sunny-chawla-inner-top-content
    img {
    width: 32px;
    height: 32px;
  }

  .custom-post-contents.author-details .single-main-banner .sunny-chawla {
    min-height: 180px;
    gap: 20px;
  }

  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla-inner-content
    .com-para.author-para {
    font-size: 17px;
    line-height: 21px;
    margin-top: 1px;
  }
}

@media only screen and (max-width: 767px) {
  .custom-post-contents.author-blog-details
    .single-main-banner-bg
    .inner-content
    h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .custom-post-contents.author-blog-details .blog-author-section .sunny-chawla {
    gap: 20px;
  }

  .custom-post-contents.author-blog-details
    .sunny-chawla-inner-content
    .sunny-chawla-inner-top-content
    .com-title {
    font-size: 30px;
    line-height: 37px;
  }

  .custom-post-contents.author-blog-details
    .sunny-chawla-inner-content
    .com-para.author-para {
    margin-top: 8px;
    font-size: 18px;
  }

  .custom-post-contents.author-blog-details
    .blog-author-section
    .sunny-chawla
    .sunny-chawla-inner-top-content
    img {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 480px) {
  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla
    .sunny-chawla-img
    img {
    width: 100px;
    height: 100px;
  }

  .custom-post-contents.author-details .single-main-banner {
    height: 80px;
  }

  .sunny-chawla-inner-content .sunny-chawla-inner-top-content .com-title {
    font-size: 21px;
    line-height: 28px;
  }

  .custom-post-contents.author-details
    .single-main-banner
    .sunny-chawla-inner-content {
    padding-top: 46px;
    margin-top: 0;
  }

  .custom-post-contents.author-details .single-main-banner .sunny-chawla {
    min-height: 140px;
  }

  .custom-post-contents.author-details .single-main-banner .sunny-chawla {
    padding-top: 40px;
  }

  .custom-post-contents.author-blog-details
    .sunny-chawla-inner-content
    .sunny-chawla-inner-top-content
    .com-title {
    font-size: 24px;
    line-height: 33px;
  }

  .custom-post-contents.author-blog-details
    .sunny-chawla-inner-content
    .com-para.author-para {
    margin-top: 5px;
    font-size: 16px;
  }

  .custom-post-contents.author-blog-details
    .blog-author-section
    .sunny-chawla
    img {
    width: 100px;
    height: 100px;
  }
}

/* Featured Blog Card Styles */
.featured-blog-card {
  background: #ffffff;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.featured-blog-card .row {
  height: 100%;
}

.featured-card-img {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.featured-card-img img {
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
}

.featured-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-playfair-display), "Playfair Display", serif; */
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 0;
}

.featured-description {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 30px;
  flex-grow: 1;
}

.featured-date {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  margin-top: auto;
}

.featured-date svg {
  flex-shrink: 0;
}

/* Regular Blog Card Styles */
.regular-blog-card {
  background: #ffffff;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.regular-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.regular-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.regular-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.regular-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.regular-date {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 15px;
}

.regular-date svg {
  flex-shrink: 0;
}

.regular-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 0;
}

.regular-description {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
  .featured-card-img {
    min-height: 300px;
  }

  .featured-card-content {
    min-height: auto;
    padding: 35px 30px;
  }

  .featured-title {
    font-size: 28px;
  }

  .featured-description {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .featured-card-img {
    min-height: 250px;
  }

  .featured-card-content {
    padding: 25px 20px;
  }

  .featured-title {
    font-size: 24px;
  }

  .featured-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .regular-card-img {
    height: 200px;
  }

  .regular-card-content {
    padding: 20px;
  }

  .regular-title {
    font-size: 20px;
  }

  .regular-description {
    font-size: 14px;
  }

  /* Add border between blog cards on mobile */
  .blog-layout-content .row.gy-4 > [class*="col-"] {
    border-bottom: 1px solid #ab8736;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .blog-layout-content .row.gy-4 > [class*="col-"]:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* Blog Sidebar Styles */
.blog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

/* Search Box Styles */
.blog-search-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 8px;
}

.blog-search-input {
  flex: 1 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  color: #333;
  background: #fff;
}

.blog-search-input::placeholder {
  color: #999;
}

.blog-search-btn {
  background: #ab8736;
  border: none;
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.blog-search-btn svg {
  color: #fff;
}

.blog-search-btn:hover {
  background: #8a6b2a;
}

/* Categories Box Styles */
.blog-categories-box {
  background: #fff;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
}

.blog-categories-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  margin-top: 0;
}

.blog-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category-tag {
  padding: 8px 16px;
  border: 1px solid #ab8736;
  background: #fff;
  color: #ab8736;
  font-size: 14px;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.blog-category-tag:hover {
  border-color: #ab8736;
  color: #ab8736;
}

.blog-category-tag.active {
  background: #ab8736;
  border-color: #ab8736;
  color: #fff;
}

/* Mobile Blog Filters */
.mobile-blog-filters {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
}

.mobile-blog-filters .blog-search-box {
  border-radius: 4px;
}

.mobile-blog-filters .blog-categories-box {
  background: transparent;
  padding: 0;
  border: none;
}

.mobile-blog-filters .blog-categories-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.mobile-blog-filters .blog-category-tag {
  font-size: 13px;
  padding: 6px 12px;
}

/* Categories Header with Reset */
.blog-categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-categories-header .blog-categories-title {
  margin-bottom: 0;
}

.category-reset-btn {
  background: transparent;
  border: 1px solid #ab8736;
  color: #ab8736;
  padding: 6px 16px;
  font-size: 13px;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.category-reset-btn:hover {
  background: #ab8736;
  color: #fff;
}

/* No Blogs Found Container */
.no-blogs-found-container {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 30px;
}

.no-blogs-found-container #h4-no-blogs-found {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-playfair-display), "Playfair Display", serif; */
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.no-blogs-message {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.reset-filters-btn {
  background: #ab8736;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-dm-sans), "DM Sans", sans-serif; */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-filters-btn:hover {
  background: #8a6b2a;
}

/* Responsive adjustments for sidebar */
@media only screen and (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .no-blogs-found-container {
    padding: 40px 15px;
  }

  .no-blogs-found-container #h4-no-blogs-found {
    font-size: 24px;
  }

  .no-blogs-message {
    font-size: 14px;
  }
}

/* Custom Skeleton Loader Styles - Theme Colors */
.blog-layout-content .placeholder-glow .placeholder {
  background: linear-gradient(
    90deg,
    rgba(171, 135, 54, 0.15) 0%,
    rgba(171, 135, 54, 0.25) 50%,
    rgba(171, 135, 54, 0.15) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  opacity: 1;
}

/* Alternative navy blue accent for variety */
.blog-layout-content .col-lg-4 .placeholder-glow .placeholder {
  background: linear-gradient(
    90deg,
    rgba(0, 32, 63, 0.12) 0%,
    rgba(0, 32, 63, 0.22) 50%,
    rgba(0, 32, 63, 0.12) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Featured blog skeleton - gold theme */
.featured-blog-card .placeholder-glow .placeholder {
  background: linear-gradient(
    90deg,
    rgba(171, 135, 54, 0.18) 0%,
    rgba(171, 135, 54, 0.3) 50%,
    rgba(171, 135, 54, 0.18) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Regular blog card skeleton */
.regular-blog-card .placeholder-glow .placeholder {
  background: linear-gradient(
    90deg,
    rgba(0, 32, 63, 0.1) 0%,
    rgba(171, 135, 54, 0.2) 50%,
    rgba(0, 32, 63, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* Shimmer animation */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

