/*--------------------------------------------------------------
  Landing Page Redesign - Light Theme Override
  Scoped under .landing-page to avoid affecting dashboard/admin
--------------------------------------------------------------*/

/* ==========================================================================
   Global Overrides
   ========================================================================== */

body.landing-page {
  background-color: #ffffff;
  color: #2d3436;
  --primary-color: #007bff;
}

body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page h4,
body.landing-page h5,
body.landing-page h6 {
  color: #1a1a2e;
}

body.landing-page p {
  color: #636e72;
}

body.landing-page .text--base {
  color: var(--primary-color) !important;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.landing-page .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.landing-page .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for child elements */
.landing-page .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.landing-page .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.landing-page .animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Header
   ========================================================================== */

.landing-page .header-section {
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.landing-page .header-section .header-bottom-area {
  background-color: transparent;
}

.landing-page .header-section .navbar-toggler {
  color: #1a1a2e;
  border-color: #dee2e6;
}

.landing-page .header-section .navbar-toggler .fas {
  color: #1a1a2e;
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li a {
  color: #495057;
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li a:hover,
.landing-page .header-bottom-area .navbar-collapse .main-menu li a.active {
  color: var(--primary-color);
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li a::after {
  background-color: var(--primary-color);
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
  color: #495057;
}

.landing-page .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a:hover {
  color: var(--primary-color);
}

.landing-page .header-section .language-select {
  background-color: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.landing-page .header-section .btn--base {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.landing-page .header-section .btn--base:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-1px);
}

.landing-page .header-section .header-account-btn {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  border: none;
}

/* Sticky header */
.landing-page .header-section.header-fixed {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.landing-page .header-section.header-fixed .header-bottom-area {
  background-color: #ffffff;
  border-bottom: none;
}

/* Mobile nav background */
@media only screen and (max-width: 991px) {
  .landing-page .header-bottom-area .navbar-collapse {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
}

/* ==========================================================================
   Banner Section
   ========================================================================== */

.landing-page .banner-section {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 40px;
}

.landing-page .banner-section .baner-element {
  display: none;
}

.landing-page .banner-section .banner-content .title {
  color: #1a1a2e;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
}

@media only screen and (max-width: 991px) {
  .landing-page .banner-section .banner-content .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 575px) {
  .landing-page .banner-section .banner-content .title {
    font-size: 28px;
  }
}

.landing-page .banner-section .banner-content p {
  color: #636e72;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 16px;
}

.landing-page .banner-section .banner-btn .btn--base {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.35);
  transition: all 0.3s ease;
}

.landing-page .banner-section .banner-btn .btn--base:hover {
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.45);
  transform: translateY(-2px);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.landing-page .about-section {
  background-color: #f8f9fa;
}

.landing-page .about-section .about-content-header span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.landing-page .about-section .about-content-header .title {
  color: #1a1a2e;
}

.landing-page .about-section .about-content-header p {
  color: #636e72;
}

.landing-page .about-section .about-item .item .item-icon {
  color: var(--primary-color);
}

.landing-page .about-section .about-item .item .item-icon i {
  color: var(--primary-color);
}

.landing-page .about-section .about-item .item .item-name p {
  color: #2d3436;
  font-weight: 500;
}

/* ==========================================================================
   App Section
   ========================================================================== */

.landing-page .app-section .app-wrapper {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 60px 40px;
}

.landing-page .app-section .app-content .sub-title {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.landing-page .app-section .app-content .title {
  color: #1a1a2e;
}

.landing-page .app-section .app-content p {
  color: #636e72;
}

.landing-page .app-section .app-btn {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  color: #2d3436;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.landing-page .app-section .app-btn:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.landing-page .app-section .app-btn .content span {
  color: #636e72;
}

.landing-page .app-section .app-btn .content .title {
  color: #1a1a2e;
}

/* ==========================================================================
   Feature Section
   ========================================================================== */

.landing-page .feature-section {
  background-color: #ffffff;
}

.landing-page .feature-section .feature-content-header span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.landing-page .feature-section .feature-content-header .title {
  color: #1a1a2e;
}

.landing-page .feature-section .feature-content-header p {
  color: #636e72;
}

.landing-page .feature-section .feature-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.landing-page .feature-section .feature-item:hover {
  border-top-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.landing-page .feature-section .feature-item .feature-content .title {
  color: #1a1a2e;
}

.landing-page .feature-section .feature-item .feature-content p {
  color: #636e72;
}

.landing-page .feature-section .feature-item a {
  color: var(--primary-color);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.landing-page .how-it-works-section {
  background-color: #f8f9fa;
}

.landing-page .how-it-works-section .how-its-work-title span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.landing-page .how-it-works-section .how-its-work-title .title {
  color: #1a1a2e;
}

.landing-page .how-it-works-section .how-it-work-number span {
  background-color: var(--primary-color);
  color: #ffffff;
}

.landing-page .how-it-works-section .how-it-work-area {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.landing-page .how-it-works-section .how-it-work-area:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.landing-page .how-it-works-section .how-it-work-area .how-it-work-icon i {
  color: var(--primary-color);
}

.landing-page .how-it-works-section .how-it-work-area .how-it-work-title .title {
  color: #1a1a2e;
}

.landing-page .how-it-works-section .how-it-work-area .how-it-work-title p {
  color: #636e72;
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */

.landing-page .statistics-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.landing-page .statistics-section .counter i {
  color: var(--primary-color);
  font-size: 50px;
}

.landing-page .statistics-section .counter .odo-title {
  color: #1a1a2e;
}

.landing-page .statistics-section .counter .title {
  color: #636e72;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.landing-page .testimonial-section {
  background-color: #f8f9fa;
}

.landing-page .testimonial-section .customer-says .title {
  color: #1a1a2e;
}

.landing-page .testimonial-section .customer-says p {
  color: #636e72;
}

.landing-page .testimonial-section .customer-says .comment p {
  color: #636e72;
}

.landing-page .testimonial-section .customer-says .comment .text--base {
  color: var(--primary-color) !important;
}

.landing-page .testimonial-section .testimonial-wrapper {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.landing-page .testimonial-section .testimonial-wrapper .testimonial-ratings i {
  color: #f1c40f;
}

.landing-page .testimonial-section .testimonial-wrapper p {
  color: #636e72;
}

.landing-page .testimonial-section .testimonial-wrapper .client-title .title {
  color: var(--primary-color);
}

.landing-page .testimonial-section .testimonial-wrapper .client-title p {
  color: #636e72;
}

.landing-page .testimonial-section .swiper-pagination-bullet {
  background-color: #dee2e6;
}

.landing-page .testimonial-section .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* ==========================================================================
   Call to Action Section
   ========================================================================== */

.landing-page .call-to-action-section {
  background-color: #ffffff;
}

.landing-page .call-to-action-section .baner-content {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  border-radius: 20px;
  overflow: hidden;
}

.landing-page .call-to-action-section .baner-content .baner-area .title {
  color: #ffffff;
}

.landing-page .call-to-action-section .baner-content .baner-area .baner-button .btn--base {
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.landing-page .call-to-action-section .baner-content .baner-area .baner-button .btn--base:hover {
  background: #f8f9fa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.landing-page .call-to-action-section .baner-content .baner-area .baner-button .btn--base i {
  color: var(--primary-color);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.landing-page .faq-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.landing-page .faq-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.landing-page .faq-section .section-title span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.landing-page .faq-section .section-title .title {
  color: #1a1a2e;
  font-size: 36px;
  font-weight: 700;
}

.landing-page .faq-section .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.landing-page .faq-section .faq-wrapper .faq-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.landing-page .faq-section .faq-wrapper .faq-item:hover {
  border-color: #c8d6e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.landing-page .faq-section .faq-wrapper .faq-item.open {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.landing-page .faq-section .faq-wrapper .faq-item .faq-title {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 16px;
  transition: color 0.3s ease;
}

.landing-page .faq-section .faq-wrapper .faq-item .faq-title::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.landing-page .faq-section .faq-wrapper .faq-item.open .faq-title::after {
  transform: rotate(180deg);
}

.landing-page .faq-section .faq-wrapper .faq-item.open .faq-title {
  color: var(--primary-color);
}

.landing-page .faq-section .faq-wrapper .faq-item .faq-content {
  display: none;
  padding: 0 25px 20px;
  color: #636e72;
  line-height: 1.7;
  font-size: 15px;
  border-top: 1px solid #f1f2f6;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.landing-page .footer-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  color: #ffffff;
}

.landing-page .footer-section p {
  color: rgba(255, 255, 255, 0.85);
}

.landing-page .footer-section .futter-logo img {
  filter: brightness(0) invert(1);
}

.landing-page .footer-section .footer-list li a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.landing-page .footer-section .footer-list li a:hover {
  color: #ffffff;
}

.landing-page .footer-section .footer-bottom-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.landing-page .footer-section .copyright-area p {
  color: rgba(255, 255, 255, 0.85);
}

.landing-page .footer-section .copyright-area a {
  color: #ffffff;
}

.landing-page .footer-section .footer-social a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.landing-page .footer-section .footer-social a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Cookie Banner Override
   ========================================================================== */

.landing-page .cookie-main-wrapper {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}

.landing-page .cookie-main-wrapper .cookie-content p {
  color: #636e72;
}

.landing-page .cookie-main-wrapper .cookie-content p a {
  color: var(--primary-color);
}

.landing-page .cookie-main-wrapper .cookie-btn {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 8px;
}

.landing-page .cookie-main-wrapper .cookie-btn-cross {
  background: #e9ecef;
  color: #495057;
  border-radius: 8px;
}

/* ==========================================================================
   Account Info / Login Modal Override
   ========================================================================== */

.landing-page .account-area {
  background-color: #ffffff;
  color: #2d3436;
}

.landing-page .account-area .account-header .title {
  color: #1a1a2e;
}

.landing-page .account-area .account-form-area .form-group input {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #2d3436;
}

.landing-page .account-area .account-form-area .form-group label {
  color: #636e72;
}

.landing-page .account-area a {
  color: var(--primary-color);
}

/* ==========================================================================
   Nice Select Override (Language Selector)
   ========================================================================== */

.landing-page .nice-select {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  border-radius: 8px;
}

.landing-page .nice-select .list {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.landing-page .nice-select .list li {
  color: #495057;
}

.landing-page .nice-select .list li:hover,
.landing-page .nice-select .list li.selected {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

/* ==========================================================================
   Section Spacing Refinements
   ========================================================================== */

.landing-page .ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.landing-page .section--bg {
  background-color: #f8f9fa !important;
}

.landing-page .bg--gray {
  background-color: #f8f9fa;
}

/* ==========================================================================
   Buttons Global Override
   ========================================================================== */

.landing-page .btn--base {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.landing-page .btn--base:hover,
.landing-page .btn--base:focus {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   Select2 Override
   ========================================================================== */

.landing-page .select2-container--default .select2-selection--single {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
}

.landing-page .select2-dropdown {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
}

.landing-page .select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: #f8f9fa;
  color: #495057;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.landing-page .contact-section {
  background-color: #ffffff;
}

.landing-page .contact-section .contact-form-area {
  background-color: #ffffff;
}

.landing-page .contact-section .contact-form-area .contact-header .sub-title {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.landing-page .contact-section .contact-form-area .contact-header .title {
  color: #1a1a2e;
}

.landing-page .contact-section .contact-form-area .form-group label {
  color: #495057;
}

.landing-page .contact-section .contact-form-area .form-group label span {
  color: #e74c3c;
}

.landing-page .contact-section .contact-form-area .form--control {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #2d3436;
  border-radius: 10px;
}

.landing-page .contact-section .contact-form-area .form--control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.landing-page .contact-section .contact-information {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  padding: 30px;
}

.landing-page .contact-section .contact-information .title {
  color: #1a1a2e;
}

.landing-page .contact-section .contact-information p {
  color: #636e72;
}

.landing-page .contact-section .contact-widget-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
}

.landing-page .contact-section .contact-widget-box .contact-icon i {
  color: var(--primary-color);
}

.landing-page .contact-section .contact-widget-box .contact-containt .title {
  color: #1a1a2e;
}

.landing-page .contact-section .contact-widget-box .contact-containt {
  color: #636e72;
}

/* ==========================================================================
   Blog / Announcement Section
   ========================================================================== */

.landing-page .blog-section {
  background-color: #ffffff;
}

.landing-page .blog-section .section-header {
  background-color: transparent;
}

.landing-page .blog-section .section-header span {
  color: var(--primary-color);
}

.landing-page .blog-section .section-header .section-title {
  color: #1a1a2e;
}

.landing-page .blog-section .blog-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.landing-page .blog-section .blog-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.landing-page .blog-section .blog-item .blog-content {
  padding: 20px;
}

.landing-page .blog-section .blog-item .blog-content .title a {
  color: #1a1a2e;
}

.landing-page .blog-section .blog-item .blog-content .title a:hover {
  color: var(--primary-color);
}

.landing-page .blog-section .blog-item .blog-content p {
  color: #636e72;
}

.landing-page .blog-section .blog-item .blog-content .blog-btn {
  color: #636e72;
}

.landing-page .blog-section .blog-item .blog-content .blog-btn a {
  color: var(--primary-color);
}

.landing-page .blog-section .pagination .page-link {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  color: #495057;
}

.landing-page .blog-section .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

/* ==========================================================================
   Service Section
   ========================================================================== */

.landing-page .service-section {
  background-color: #ffffff;
}

.landing-page .service-section .section-header {
  background-color: transparent;
}

.landing-page .service-section .section-header span {
  color: var(--primary-color);
}

.landing-page .service-section .section-header .section-title {
  color: #1a1a2e;
}

.landing-page .service-section .service-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.landing-page .service-section .service-item:hover {
  border-top-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.landing-page .service-section .service-item .service-icon {
  background-color: #f0f7ff;
}

.landing-page .service-section .service-item .service-content .title {
  color: #1a1a2e;
}

.landing-page .service-section .service-item .service-content p {
  color: #636e72;
}

/* ==========================================================================
   Blog Sidebar & Details
   ========================================================================== */

.landing-page .blog-section .blog-sidebar .widget-box {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.landing-page .blog-section .blog-sidebar .widget-box .widget-title {
  color: #1a1a2e;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.landing-page .blog-section .blog-sidebar .category-list li a {
  color: #495057;
}

.landing-page .blog-section .blog-sidebar .category-list li a:hover {
  color: var(--primary-color);
}

.landing-page .blog-section .blog-sidebar .category-list li a span {
  background-color: var(--primary-color);
  color: #ffffff;
}

.landing-page .blog-section .blog-sidebar .popular-widget-box .single-popular-item .popular-item-content .title a {
  color: #1a1a2e;
}

.landing-page .blog-section .blog-sidebar .popular-widget-box .single-popular-item .popular-item-content .title a:hover {
  color: var(--primary-color);
}

.landing-page .blog-section .blog-sidebar .popular-widget-box .single-popular-item .popular-item-content .date {
  color: #636e72;
}

.landing-page .blog-section .blog-sidebar .tag-widget-box .tag-list li a {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #495057;
  border-radius: 6px;
}

.landing-page .blog-section .blog-sidebar .tag-widget-box .tag-list li a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.landing-page .blog-section .blog-item .blog-thumb-img {
  border-radius: 12px;
  overflow: hidden;
}

.landing-page .blog-section .blog-item .blog-content {
  color: #636e72;
}

.landing-page .blog-section .blog-item .blog-content .title {
  color: #1a1a2e;
}

.landing-page .blog-section .blog-item .blog-content a {
  color: var(--primary-color);
}

/* ==========================================================================
   Page Title / Breadcrumb Area (for inner pages)
   ========================================================================== */

.landing-page .breadcrumb-section {
  background-color: #f8f9fa;
}

.landing-page .breadcrumb-section .title {
  color: #1a1a2e;
}

.landing-page .breadcrumb-section .breadcrumb li a {
  color: #636e72;
}

.landing-page .breadcrumb-section .breadcrumb li.active {
  color: var(--primary-color);
}

/* ==========================================================================
   Responsive Fine-tuning
   ========================================================================== */

@media only screen and (max-width: 991px) {
  .landing-page .banner-section {
    padding-top: 40px;
  }

  .landing-page .faq-section .faq-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 575px) {
  .landing-page .banner-section .banner-content .title {
    font-size: 26px;
  }

  .landing-page .faq-section .section-title .title {
    font-size: 28px;
  }

  .landing-page .faq-section .faq-wrapper .faq-item .faq-title {
    font-size: 14px;
    padding: 16px 20px;
  }

  .landing-page .faq-section .faq-wrapper .faq-item .faq-content {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}
