/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/common.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.com-title {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: var(--font-playfair-display), "Playfair Display", serif; */
}

/* job page css end here  */

/* Blog hero section - extend behind header */
.blog-hero-section {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

/* Adjust for smaller header on mobile */
@media (max-width: 768px) {
  .blog-hero-section {
    margin-top: -70px !important;
    padding-top: 70px !important;
  }
}

@media (max-width: 480px) {
  .blog-hero-section {
    margin-top: -65px !important;
    padding-top: 65px !important;
  }
}

.our-port.blog-layout-content .portfolio-tabs .our-work-card {
  background: #ffffff;
  height: 100%;
  border: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
}

.our-port.blog-layout-content .our-work-card .work-card-img {
  display: flex;
}

.our-port.blog-layout-content .portfolio-tabs .our-wrok-footer {
  padding: 20px 16px;
  height: 100%;
}

.our-port.blog-layout-content
  .portfolio-tabs
  .our-wrok-footer
  .blog-content-top {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.our-port.blog-layout-content .portfolio-tabs .our-wrok-footer .small-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px !important;
  line-height: 28px;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 51px;
}

.our-port.blog-layout-content .portfolio-tabs .our-wrok-footer .small-content {
  font-weight: 400 !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 54px;
}

.our-port.blog-layout-content .portfolio-tabs .apply-now-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ab8736;
  margin: 0 0 16px 0;
  padding: 0 16px;
}

.our-port.blog-layout-content .respo-pagination.pagination {
  margin-bottom: 0;
}

.our-port.blog-layout-content .portfolio-tabs .apply-now-link img {
  min-width: 30px;
  min-height: 30px;
  padding-left: 10px;
}

.our-port.blog-layout-content
  .portfolio-tabs
  .our-wrok-footer
  .blog-content-top
  span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}

.our-port.blog-layout-content
  .portfolio-tabs
  .our-wrok-footer
  .blog-content-top
  li
  span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}

.our-port.blog-layout-content
  .portfolio-tabs
  .our-work-card
  .work-card-img
  img {
  min-height: 211px;
  height: 100%;
  max-height: 211px;
}

.salary-guide .ebook-form-wrapper .form-group .react-tel-input .special-label {
  display: none !important;
}

/* homepage modal css  */
/* Styling for hidden inputs */
.hidden-input {
  border: 1px solid rgba(255, 255, 255, 0) !important;
  /* Transparent border */
  color: rgb(235, 234, 234) !important;
  /* Light gray text */
  background-color: #fafafa !important;
  /* Light gray background */
}

/* Styling for PhoneInput wrapper when hidden */
.phone-input-wrapper.hidden-input .form-control {
  border: 1px solid rgba(255, 255, 255, 0) !important;
  /* Transparent border */
  color: rgb(235, 234, 234) !important;
  /* Light gray text */
  background-color: #fafafa !important;
  /* Light gray background */
}

/* Placeholder styling */
.hidden-input::placeholder {
  color: rgb(196, 196, 196) !important;
  /* Yellow placeholder text */
}

.mobile-nav {
  height: 56px !important;
}

.flag-dropdown {
  border: none !important;
}

.hidden-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: yellow !important;
}

.hidden-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: yellow !important;
}

/* Ensure PhoneInput placeholder inherits the color */
.phone-input-wrapper .hidden-input .form-control::placeholder {
  color: yellow !important;
}

.sortby-sec .btn-group .btn {
  font-size: clamp(14px, 4vw, 16px);
}

.sortby-sec .btn-group .btn:hover,
.sortby-sec .btn-group .btn.active {
  background-color: #393085;
}

.sortby-sec .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sortby-sec .btn-wrapper span {
  white-space: nowrap;
}

.view-count {
  display: flex;
  margin-bottom: 4px;
}

/* homepage modal css  */
@media only screen and (max-width: 1199px) {
  .footer-top .footer-top-content h3,
  h3.footer-bottom-tetle {
    font-size: 20px !important;
  }
}

@media only screen and (max-width: 991px) {
  body,
  html {
    overflow-x: clip;
  }

  .main-banner .inner-content {
    padding: 0px 0px 40px 0px;
    text-align: start;
  }

  .py-50 {
    padding: 32px 0px;
  }

  .pb-24 {
    padding-bottom: 20px;
  }

  .pb-16 {
    padding-bottom: 14px;
  }

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

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

  .d-none-mobile {
    display: none;
  }

  .val-clients .value-card {
    /* margin: 10px 5px 15px; */
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  }

  .modal-dialog.modal-xl.modal-dialog-centered {
    max-width: 95%;
  }

  .main-banner img {
    margin-inline: auto;
  }

  .footer-form.hire-devloper-form .lbl-txt input.mql_budget_amount {
    padding: 0 8px;
    width: 18%;
  }

  .hireKotlinModal .mid-border::before {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  section.footer-form .all-btns {
    padding: 12px 20px;
  }

  .main-banner .inner-content {
    padding: 0px 0px 10px 0px;
  }

  .main-banner .btn-primary {
    margin-top: clamp(10px, 1.4vw, 20px);
  }

  /* .main-banner-btn {
      text-align: center !important;
    }
  .main-banner  img{
  display: block !important;
  }
    .main-banner .btn-primary {
      display: inline-block;
    } */
}

@media only screen and (max-width: 767px) {
  .pb-24 {
    padding-bottom: 18px;
  }

  .pb-16 {
    padding-bottom: 10px;
  }
  .fix-text {
    padding: 10px !important;
  }

  h2.com-title {
    font-size: 20px;
    line-height: 30px;
    /* text-align: left ; */
  }

  h3.com-title {
    line-height: 30px;
  }

  h4.com-title {
    line-height: 30px;
  }

  .small-title {
    font-size: 16px;
    line-height: 22px;
    /* text-align: left ; */
  }

  p.com-para {
    font-size: 14px;
    line-height: 25px;
  }

  .order-2-mobile {
    order: 2;
  }

  .order-1-mobile {
    order: 1;
    padding-bottom: 20px;
  }

  .main-banner {
    padding: 50px 0px;
  }

  .main-banner .inner-content p.com-para {
    line-height: 28px;
  }

  .wforus-banner h1 {
    font-size: 20px !important;
    text-align: center;
  }

  .main-banner .btn-primary {
    display: inline-block;
    font-size: 16px;
  }

  .cus-pb-0 {
    padding-bottom: 0px !important;
  }

  section.footer-form {
    padding: 0px !important;
  }

  .modal-form {
    margin-top: 0px;
    padding: 0px !important;
  }

  .footer-form.hire-devloper-form .react-tel-input {
    margin-bottom: 10px;
    min-height: 45px !important;
  }

  .footer-form.hire-devloper-form .react-tel-input .form-control {
    height: 45px;
  }

  .footer-form.hire-devloper-form .form-group .form-control {
    line-height: 25px;
    font-size: 16px;
    min-height: 25px !important;
  }

  .gray-strip {
    flex-wrap: wrap;
    gap: 5px;
    flex-direction: column;
  }

  .gray-strip .text-center {
    text-align: start !important;
  }

  .job-pages .main-banner.job-banner .inner-content h1 {
    line-height: 35px;
    font-size: 30px;
  }

  .job-pages .main-banner.job-banner .left-text {
    height: 250px;
  }

  .our-port.blog-layout-content
    .portfolio-tabs
    .our-work-card
    .work-card-img
    img {
    min-height: auto;
    height: auto;
    max-height: unset;
  }

  .job-pages .main-banner.job-banner {
    background-position: top right;
  }
}

@media only screen and (max-width: 575px) {
  .hireKotlinModal .ais-logo {
    width: 100px;
    height: auto;
  }

  .hireKotlinModal .model-left-side-design .inner-card .card-top {
    padding: 15px 0 15px;
  }

  .hireKotlinModal .model-left-side-design .inner-card .card-top .price {
    font-size: 25px;
    line-height: inherit;
  }

  .hireKotlinModal .com-para.text-center.my-47 {
    display: none;
  }

  .hireKotlinModal .side-button {
    background: #393185;
    color: #fff;
    font-size: 15px;
    width: 100% !important;
  }

  .footer-form.hire-devloper-form .optionList .optionBox {
    padding-left: 0;
  }

  .footer-form.hire-devloper-form .modal-budget-col {
    margin-bottom: 0;
  }

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

  .pb-24 {
    padding-bottom: 12px;
  }

  .pb-16 {
    padding-bottom: 8px;
  }

  /* .main-banner { background: linear-gradient(to bottom, #5046AE, #231D5F); } */

  .mobile-left {
    text-align: left !important;
  }

  /* section.footer-form .footer-content {
      padding: 30px 37px !important;
    } */

  .hireKotlinModal .footer-content,
  .footer-form.hire-devloper-form .footer-content {
    padding: 0 !important;
  }

  .val-clients .value-card-img img {
    height: 260px;
    object-fit: cover;
  }

  .val-clients .value-card-footer {
    /* min-height: 100% !important; */
    display: inline-block !important;
  }

  section.footer-form .term-para,
  section.footer-form .footer-content .form-check {
    font-size: 14px;
    line-height: 22px;
  }

  section.footer-form .footer-content .all-btns {
    margin: unset;
    text-align: center;
    font-size: 14px;
  }

  .main-banner .btn-primary {
    font-size: 14px;
    padding: 15px 25px;
  }

  .main-banner {
    padding: 40px 0px;
  }

  .job-pages .main-banner.job-banner .left-text {
    height: 200px;
  }

  .sidebar-icon ul li a {
    padding: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 32px;
    box-sizing: border-box;
  }
  .franchise-form-wrapper .form-group {
    padding: 0;
  }
}

/* internal link inside the content */
.page-link {
  font-family: var(--font-lora), "Lora", serif;
  /* font-family: DM Sans, sans-serif; */
  color: #ab8736;
  font-weight: 600;
  display: inline-block;
}

/* contactform Phone number */
.form-phone-num {
  width: 100% !important;
}

/* twich section */
#Wallet-Based-Payments .ta_box {
  background: #fff;
  border: 1px dashed #ab8736;
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
}

#Wallet-Based-Payments .ta_box .ta_title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: left;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 15px;
}

#Wallet-Based-Payments .ta_box p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #000000;
}

.blog-layout-content .our-work-card .our-wrok-footer .small-title {
  font-weight: 500;
  font-size: 20px !important;
  line-height: inherit;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}

.blog-layout-content .our-work-card .our-wrok-footer .small-content {
  font-weight: 500;
  font-size: 18px !important;
  line-height: inherit;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}

.blog-layout-content .apply-now-link {
  display: flex !important;
  align-items: center;
  margin: 30px 0 20px 0;
}

.blog-layout-content .apply-now-link span {
  font-weight: 600;
  font-size: 22px;
  line-height: 11px;
  color: #ab8736;
  display: block;
}

.blog-layout-content .cate-wrap {
  border-top: 1px solid #e2e2e2;
  padding: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

.blog-layout-content .blog-date {
  display: flex;
  gap: 6px;
}

.blog-layout-content .blog-date svg {
  height: 21px;
  width: auto;
}

.blog-layout-content.search-bar {
  position: relative;
}

.blog-layout-content .search-bar .fa-search {
  position: absolute;
  content: "";
  right: 8px;
  top: 10px;
  width: 23px;
  height: 23px;
  background-image: url("/assets/images/common-img/searchicons.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.search-btn-blog {
  display: none !important;
}

.search-bar {
  position: relative;
  max-width: 218px;
}

.top-navbar-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.our-port .nav-pills {
  gap: 10px;
}

.blog-layout-content .nav-pills {
  /* gap: 40px; */
  width: calc(100% - 220px);
}
.blog-layout-content .nav-pills .nav-item:last-child {
  margin-left: auto;
  margin-right: 16px;
}
.blog-layout-content .search-bar input {
  background: #d9d9d9;
  border-radius: 50px;
  outline: none;
  height: 40px;
  border: 0;
  padding-left: 16px;
  padding-right: 37px;
  width: 100%;
}

@media (max-width: 767px) {
  #Wallet-Based-Payments .ta_box .ta_title {
    font-size: 18px;
  }

  #Wallet-Based-Payments .ta_box {
    padding: 15px 15px 0 15px;
  }

  #Wallet-Based-Payments .ta_box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  #Wallet-Based-Payments .ta_box {
    height: unset;
  }

  .blog-layout-content .our-work-card .our-wrok-footer .small-title {
    font-size: 18px !important;
  }

  .blog-layout-content .our-work-card .our-wrok-footer .small-content {
    font-size: 16px !important;
  }

  .blog-layout-content .our-port .nav-pills {
    gap: 20px 20px;
  }

  ul.blog-content-top.row {
    gap: 15px;
  }
}

/* twich section */

@media (max-width: 992px) {
  section.footer-form {
    padding: 0px !important;
  }
}

.react-tel-input .flag-dropdown {
  background-color: transparent !important;
  border: none !important;
}

/* poker feature slider addition of slider type 2 */
.poker-feature-slider .cm_box {
  background: #fff;
  border-radius: 8px;
  padding: 30px 15px;
  border: 1px solid #d9d9d9;
  height: 100%;
}

.poker-feature-slider .cm_box .cm_title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  text-transform: capitalize;
  color: #333;
  margin-bottom: 10px;
}

.poker-feature-slider .cm_box p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 196px;
}

.poker-feature-slider .cm_btn_wrap {
  margin-top: auto;
  text-align: center;
}

.poker-feature-slider .cm_box .btn_line {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  text-transform: capitalize;
  color: #ab8736;
  display: inline-block;
  margin: 0 auto 0 auto;
  padding: 17px 30px;
  border: 1px solid #ab8736;
  transition: all 0.5s;
}

.poker-feature-slider .cm_box .btn_line:hover {
  color: #fff;
  background-color: #ab8736;
}

.poker-feature-slider-type-2 .our-expertise-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poker-feature-slider-type-2 .our-expertise-card p.com-para {
  flex: 1 1;
}

.poker-feature-slider-type-2 .our-expertise-card .btn-primary {
  margin-top: 16px;
  color: #ab8736;
  border: 1px solid #ab8736;
  background-color: transparent;
  display: inline-block;
  min-width: 212px;
}

.responsive-br-none br {
  display: none;
}

/* icon-title-card-section */
.icon-title-card-section .our-slot-card {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 15px;
  flex-direction: column;
  text-align: center;
  height: 100%;
}

.icon-title-card-section .our-slot-card .slot-title {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}

/* .poker-slider-type-2  .features-small-title.small-title {
    font-size: 18px;
  } */

@media only screen and (min-width: 1025px) {
  .footer-form {
    padding-block: clamp(0rem, -0.8475rem + 4.2373vw, 3.125rem)
      clamp(0rem, -1.6949rem + 8.4746vw, 6.25rem);
  }
}

@media only screen and (max-width: 991px) {
  .main-banner .inner-content h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .poker-feature-slider .cm_box p {
    min-height: unset;
  }

  p.com-para.textCenter {
    text-align: center !important;
  }

  .poker-faq-section-wrapper .accordion-button {
    min-height: unset !important;
  }

  .poker-feature-slider-type-2 .item {
    height: auto;
  }

  .icon-title-card-section .our-slot-card {
    flex-direction: row;
  }

  .icon-title-card-section .our-slot-card img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }

  .icon-title-card-section .our-slot-card .slot-title {
    font-size: 14px;
  }

  .line-heigh-normal-para p.com-para {
    line-height: 22px !important;
  }

  /* .poker-slider-type-2  .features-small-title.small-title {
    font-size: 14px;
  } */
  .val-clients .value-card-footer .desc {
    font-size: 16px;
  }
}

/* label software section wrapper */
.label-software-section-wrapper .benefit-card-wrapper .benefit-card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 100%;
}

.label-software-section-wrapper .box_dotted .benefit-card {
  border: 1px dashed #ab8736;
  border-radius: 20px;
}

/* poker script quote slider */
.poker-quote-script-slider .poker-script-card:hover {
  background-color: #fff !important;
}

.poker-quote-script-slider .poker-script-card:hover div,
.poker-quote-script-slider .poker-script-card:hover p {
  color: #333333 !important;
}

.poker-slider-type-3 .center .ps_wrap .poker-script-card {
  background-color: #ab8736;
}

.poker-slider-type-3 .center .ps_wrap .poker-script-card .small-title,
.poker-slider-type-3 .center .ps_wrap .poker-script-card p {
  color: #fff !important;
}

.hire-page-wrapper .phone-c-group .react-tel-input .selected-flag {
  padding-left: 0px !important;
}

.hire-page-wrapper .phone-c-group .react-tel-input .flag-dropdown {
  left: 22px !important;
}

.hire-page-wrapper .phone-c-group .react-tel-input .form-control:focus {
  box-shadow: none;
}

.hire-page-wrapper .phone-c-group .react-tel-input .flag-dropdown {
  top: 2px !important;
  bottom: 2px !important;
}

.hire-page-wrapper .phone-c-group .react-tel-input .form-control {
  padding: 28px 60px;
}

@media (max-width: 767px) {
  .hire-page-wrapper .phone-c-group .react-tel-input .form-control {
    padding: 23px 60px;
  }

  .main-banner .inner-content h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }
}

.invalid-feedback-error {
  color: #dc3545;
  font-size: 13px;
  font-weight: 500;
}

.hire-page-wrapper .invalid-feedback-error {
  color: #dc3545;
  font-size: 12px;
  padding: 0px;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 575px) {
  .blog-layout-content .our-work-card .our-wrok-footer .small-title {
    font-size: 16px !important;
  }

  .blog-layout-content .our-work-card .our-wrok-footer .small-content {
    font-size: 14px !important;
  }

  .blog-layout-content .apply-now-link {
    margin: 30px 0 0px 0;
  }

  .blog-layout-content .cate-wrap {
    font-size: 16px;
  }

  .blog-layout-content .blog-date span {
    font-size: 14px;
  }

  .blog-layout-content .blog-date {
    display: flex;
    gap: 9px;
  }

  .sitemap-main #myTab {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.gallery-wrapper {
  margin-top: calc(105px + 2em);
}

.gallery-wrapper .container {
  max-width: 1170px;
}

.gallery-wrapper a img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 2rem;
  transition: all 0.3s linear;
}

.gallery-wrapper a img:hover {
  cursor: pointer;
  opacity: 0.8;
}

.gallery-wrapper .container {
  max-width: 1170px;
}

.gallery-wrapper {
  margin-block: 50px;
}

.gallery-wrapper .container {
  max-width: 1170px;
}

.gallery-wrapper .resp-img {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-wrapper .resp-img a {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(33% - 12px);
  max-width: calc(33% - 12px);
  width: calc(33% - 12px);
  height: 250px;

  @media (max-width: 991px) {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 12px);
    max-width: calc(50% - 12px);
    width: calc(50% - 12px);
  }
}

.gallery-wrapper .resp-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 2rem;
  transition: all 0.3s linear;
}

.gallery-wrapper a img:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media (max-width: 525px) {
  .gallery-wrapper .resp-img a {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

.event-nav .next a#btns {
  position: relative;
  padding: 6px 15px 6px 25px;
  font-size: 17px;
  background: #2e308f;
  border-radius: 30px;
  color: #fff;
  width: 210px;
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-bottom: 0;
  text-decoration: none;
}

.page-title .com-title {
  text-align: center;
  color: #393185;
  margin-bottom: 30px;
  font-size: 45px;
}

.sitemap-wrapper .com-title {
  text-align: center;
  color: #393185;
  margin-bottom: 30px;
  font-size: 45px;
}

.sitemap-main {
  width: 100%;
  display: inline-block;
  margin: 0px;
  padding: 0px;
  border: 3px solid #393185;
  border-radius: 10px;
}

.sitemap-main .nav-link.active {
  color: #393185;
}

.sitemap-main #myTab {
  border-bottom: 2px solid #393185;
}

.sitemap-main .nav-item button {
  border-radius: 0;
}

.sitemap-main .nav-item button.nav-link.active {
  background-color: transparent !important;
  cursor: default;
  border-radius: 0px !important;
  background-color: #fff;
}

.sitemap-main .tab-content {
  padding: 0 20px;
}

.sitemap-main .tab-content .tab-title p {
  width: 100%;
  display: inline-block;
  margin: 0;
  color: #393185;
  font-weight: 700;
  padding: 15px 0;
  font-size: 20px;
}

.sitemap-list li {
  font-size: 17px;
  color: #393186;
  line-height: 24px;
  margin-bottom: 0;
  position: relative;
  padding: 0 0 10px 0px !important;
}

.sitemap-list li a {
  color: #362e86;
  position: relative;
}

.sitemap-list li a:hover {
  font-weight: 500;
}

.sitemap-main .nav-item .nav-link.active::before {
  transition: all 0.3s linear;
  color: #393185;
  content: "";
  position: absolute;
  /* width:100%; */
  border-bottom: 4px solid #393185;
  bottom: -6px;
  left: 0;
  width: 100%;
  /* height: 6px; */
}

.sitemap-main .nav-tabs li {
  margin-bottom: 0;
  border-bottom: 3px solid transparent;
}

.sitemap-main .nav-pills button.nav-link {
  color: #393185;
  font-weight: 600 !important;
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  text-transform: capitalize;
  border: none;
  transition: all 0.3s linear;
  cursor: pointer;
  position: relative;
  border-bottom: 3px solid transparent;
}

.blog-select-main-page {
  border: 1px solid black !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333;
  border-bottom: 2px solid #f9f9f9;
  border-radius: 0;
  white-space: nowrap;
  /* padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); */
  padding-block: 8px;
  padding-inline: 8px 24px;
  border: none;
  box-shadow: none !important;
  background-position: right 0.5rem center;
}

.blog-layout-content .nav-pills {
  width: 100%;
}
.blog-layout-content .search-bar {
  max-width: 100%;
  margin-inline: auto;
}
#h4-no-blogs-found {
  text-align: center;
}

.grecaptcha-badge {
  display: none !important;
}

/* breadcrumb css */
.breadcrum .breadcrum-bar {
  border-bottom: 1px solid #dee2e6;
}

.breadcrum-bar {
  background: #f1f1f100;
  font-size: 16px;
  padding: 12px 0 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  color: #362d8600;
}

.breadmain {
  color: #000;
  font-weight: 700;
  margin: 0 0px;
}

span.breadcrumb_last {
  color: #1c1a31;
  font-weight: 700;
}

.slash-home {
  margin: 0 6px;
}

/* breadcrumb css */

/* job detail page css */
.job-detail-desc ul {
  padding-left: 32px;
}

.job-detail-desc ul li {
  padding-bottom: 5px;
  list-style: disc !important;
}

/* job detail page css */

/* about-us directors-section */
.directors-section {
  background-color: #393185;
}

.directors-section h2,
.directors-section p,
.directors-section h3,
.directors-section a {
  color: white;
}

.directors-section .divider {
  width: 1px;
  max-width: 1px;
  background-color: #ffffff;
  height: 70px;
  margin: 0px;
  padding: 0px;
}

/* .directors-section .leadership-img-wrapper{
  border: 4px solid yellow;
  position: relative;
  height: 356px;
  width: 450px;
  margin-left: 48px;
  }
  .directors-section .leadership-img-wrapper .leadership-img img{
    position: absolute;
    left: -48px;
    bottom: -48px;
  }
  .directors-section .leadership-img-wrapper.left{
   
  }
  .directors-section .leadership-img-wrapper.left .leadership-img img{
    left: -48px !important;
    top: 48px !important;
    
  } */
/* about-us directors-section */

/* product page common components css  */
.collaborate-content {
  padding: 93px 0;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.collaborate-content .collaborate-para {
  max-width: 950px;
}
.collaborate-content .com-title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 54px;
  line-height: 64px;
  color: #1c2530;
  text-align: center;
  /* font-family: outfit; */
}
.collaborate-content .com-para {
  margin-bottom: 40px;
  color: #000000;
  font-size: 32px;
  line-height: 44px;
}
.collaborate-content .btn-primary,
.collaborate-content .btn-primary:focus {
  background-color: #3b259c;
  border-color: #3b259c;
  padding: 10px 65px;
  border-radius: 8px;
}

.markin-gaming-content {
  padding: 80px 89px;
  /* background: url("/assets/images/common-img/markin-gaming-bg.jpg"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
  display: flex;
  justify-content: start;
  overflow: hidden;
  /* font-family: outfit; */
}
.markin-gaming-content .com-title {
  color: #fff;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 16px;
}
.markin-gaming-content .com-para {
  font-size: 22px;
  line-height: 30px;
  color: #d9d9d9;
  margin-bottom: 32px;
  max-width: 599px;
}
.markin-gaming-content .small-title {
  color: #fff;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 32px;
}
.hire-game-developer-wrapper .button-group,
.markin-gaming-content .button-group {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hire-game-developer-wrapper .button-group .btn-primary,
.hire-game-developer-wrapper .button-group .btn-primary:focus,
.markin-gaming-content .button-group .btn-primary,
.markin-gaming-content .button-group .btn-primary:focus {
  padding: 10px 28px;
  color: #fff;
  background-color: #3b259c;
  border-color: #3b259c;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 600;
}
.hire-game-developer-wrapper .button-group .btn-outline-prime,
.hire-game-developer-wrapper .button-group .btn-outline-prime:hover,
.hire-game-developer-wrapper .button-group .btn-outline-prime:focus,
.markin-gaming-content .button-group .btn-outline-prime,
.markin-gaming-content .button-group .btn-outline-prime:hover,
.markin-gaming-content .button-group .btn-outline-prime:focus {
  border-color: #fff;
  color: #fff;
  font-size: 22px;
  line-height: 35px;
  border-radius: 8px;
  padding: 10px 78px;
}

.hire-game-developer-content {
  padding: 80px 89px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 40px;
  display: flex;
  justify-content: start;
  overflow: hidden;
  /* font-family: outfit; */
}

.hire-game-developer-content .hire-game-developer {
  max-width: 544px;
}
.hire-game-developer-wrapper {
  position: relative;
  overflow: hidden;
}
.hire-game-developer-content .com-title {
  color: #101023;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 12px;
}
.hire-game-developer-content .com-para {
  color: #181818;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 12px;
  margin-bottom: 50px;
}

.hire-game-developer-wrapper .button-group .btn-outline-prime:hover,
.hire-game-developer-wrapper .button-group .btn-outline-prime:focus,
.hire-game-developer-wrapper .button-group .btn-outline-prime {
  padding: 7px 24px;
  border-color: #3b259c;
  color: #3b259c;
}

.row.hire-game-developer-content {
  position: relative;
}
/* .row.hire-game-developer-content:before{
    content: "";
    background: #b8c7da;
    width: 100%;
    height: 85px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  
  } */

/* Franchise Form Css Start From Here */
.franchise-form-wrapper {
  padding-inline: 16px;
  padding-block: 32px;
  /* background:#f6f7ff url(/assets/images/franchise/franchise-form-bg.png) no-repeat right bottom; */
  position: relative;
}
.franchise-form-wrapper .close-btn {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  background-color: #fff;
  color: #000;
  box-shadow: 0 1px 5px 1px rgb(0, 0, 0, 0.3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2vw, 20px);
  cursor: pointer;
  transition: 0.3s all;
}
.franchise-form-wrapper .close-btn:hover {
  box-shadow: 0 1px 5px 1px rgba(240, 129, 129, 0.4);
}
.franchise-form-wrapper .form-group .form-control {
  padding-block: clamp(8px, 2.5vw, 10px);
  border-radius: 8px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
}
.franchise-form-wrapper .mobile-nav {
  height: auto !important;
}
.franchise-form-wrapper .form-group .form-control:focus {
  box-shadow: none;
  border-color: #fceac1 !important;
}
.franchise-modal-body {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.franchise-form-wrapper .franchise-form-wrapper .modal-content {
  border-radius: 6px;
  overflow: hidden;
}
.franchise-form-wrapper .submit-button {
  color: #fff;
  width: 80%;
  padding-block: clamp(10px, 2.5vw, 15px);
  border-radius: 8px;
  font-size: clamp(18px, 2vw, 20px);
  border: none;
}
/* Franchise Form Css End Here */

@media (min-width: 768px) and (max-width: 1024px) {
  .collaborate-content .com-title,
  .hire-game-developer-content .com-title {
    font-size: 48px;
    line-height: 60px;
  }
  .collaborate-content,
  .hire-game-developer-content {
    padding: 60px 40px;
  }
}
@media (max-width: 992px) {
  .row.hire-game-developer-content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .collaborate-content,
  .markin-gaming-content,
  .hire-game-developer-content {
    padding: 16px 0;
    border-radius: 16px;
  }
  .collaborate-content .com-title,
  .markin-gaming-content .com-title,
  .hire-game-developer-content .com-title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
  .collaborate-content .com-para,
  .markin-gaming-content .com-para,
  .hire-game-developer-content .com-para {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
  .markin-gaming-para {
    padding: 16px;
    width: 100%;
  }
  .markin-gaming-content .small-title {
    font-size: 20px;
    text-align: center;
  }
  .hire-game-developer-wrapper .button-group .btn-outline-prime:hover,
  .hire-game-developer-wrapper .button-group .btn-outline-prime:focus,
  .hire-game-developer-wrapper .button-group .btn-outline-prime {
    padding: 8px 12px;
    border-radius: 6px;
  }
  .hire-game-developer-wrapper .button-group .btn-outline-prime,
  .hire-game-developer-wrapper .button-group .btn-outline-prime:hover,
  .hire-game-developer-wrapper .button-group .btn-outline-prime:focus,
  .markin-gaming-content .button-group .btn-outline-prime,
  .markin-gaming-content .button-group .btn-outline-prime:hover,
  .markin-gaming-content .button-group .btn-outline-prime:focus {
    padding: 8px 12px;
    line-height: 100%;
    border-radius: 6px;
  }
  .hire-game-developer-wrapper .button-group,
  .markin-gaming-content .button-group {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }
  .hire-game-developer-wrapper .button-group .btn-primary,
  .hire-game-developer-wrapper .button-group .btn-primary:focus,
  .markin-gaming-content .button-group .btn-primary,
  .markin-gaming-content .button-group .btn-primary:focus {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 6px;
  }
  .row.hire-game-developer-content {
    margin: 0;
    padding: 24px 0;
  }
  .top-navbar-tab {
    flex-direction: column;
    align-items: start;
  }
}

