/* =========================
   custom.css
   Base desktop styles for #tm_topbar
========================= */

#tm_topbar {
  /* colors sampled from your screenshot */
  --tm-bg-start: #EFEEDD;
  --tm-bg-end: #E0E7F1;
  --tm-purple: #543EE8;
  --tm-purple-2: #6F43F6;
  --tm-brand-text: #011C1A;
  --tm-yellow: #FFCD20;
  --tm-login: #EAEFF2;
  --tm-placeholder: #C7C7C7;

  background: linear-gradient(90deg, var(--tm-bg-start) 0%, var(--tm-bg-end) 100%);
  border-bottom: 1px solid rgba(1, 28, 26, 0.04);
  padding: 10px 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* --- Brand --- */
#tm_topbar .brand {
  gap: 0px;
}
#tm_topbar .brand img {
  height: 50px;
  width: auto;
  display: block;
}
#tm_topbar .brand h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--tm-brand-text);
  letter-spacing: -0.2px;
}

/* --- Search Wrapper --- */
#tm_topbar .search-wrap {
  padding: 6px 0;
  margin: 0px 20px;
}
#tm_topbar .search-inner {
  background: #ffffff;
  border-radius: 46px;
  padding: 3px;
  box-shadow: 0 3px 16px rgba(1,28,26,0.04);
  align-items: center;
  display: flex;
  border: 1px solid #d8d8d8;
}

/* Category Dropdown */
#tm_topbar .category-dropdown .btn.dropdown-toggle {
  background: transparent;
  border: none;
  color: #03302c;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 30px;
}

/* Vertical rule */
#tm_topbar .search-inner .vr {
  width: 1px;
  height: 20px;
  margin: 10px 10px;
  border-radius: 1px;
}

/* Input */
#tm_topbar .search-inner .form-control {
  border: none;
  box-shadow: none;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.95rem;
  color: #222;
  background: transparent;
}

/* Placeholder */
#tm_topbar .search-inner .form-control::placeholder {
  color: #5f5d5d;
  opacity: 1;
  font-weight: 500;
}

/* Search Button */
#tm_topbar .search-btn {
  background: linear-gradient(180deg, var(--tm-purple-2), var(--tm-purple));
  color: #fff;
  
  padding: 9px 20px;
  border-radius: 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 26px rgba(84,62,232,0.14);
  line-height: 1.4;
}
#tm_topbar .search-btn i { font-size: 1rem; }

/* --- Social Icons --- */
#tm_topbar .socials a {
  color: var(--tm-brand-text);
  margin-right: 0px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
}

/* --- Actions --- */
#tm_topbar .actions .btn-register {
  background: linear-gradient(180deg, var(--tm-yellow), #f7bf00);
  color: #263238;
  border: none;
  font-weight: 500;
  border-radius: 28px;
  padding: 6px 16px;
  box-shadow: 0 8px 20px rgba(255,205,32,0.14);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

#tm_topbar .actions .btn-register:hover {
  background: #000;
  color: #fff;
  border: none;
  font-weight: 500;
  border-radius: 28px;
  padding: 6px 16px;
  box-shadow: 0 8px 20px rgba(255,205,32,0.14);
  text-decoration: none;
}

#tm_topbar .actions .btn-login {
    background: linear-gradient(#fff 0%, #d7e1d8 100%);
    color: #414141;
    border-radius: 28px;
    padding: 6px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
#tm_topbar .actions .btn-login:hover {
    background: #000;
  color: #fff;
    border-radius: 28px;
    padding: 6px 18px;
    font-weight: 600;
    text-decoration: none;
}




.tm_nav_area {
  background: #fff;
  /*border-bottom: 1px solid #e0e0e0;*/
  font-family: 'Arial', sans-serif;
}

.tm_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

.tm_nav_menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.tm_nav_menu .nav_item {
  position: relative;
}

.tm_nav_menu .nav_item a {
    text-decoration: none;
    color: #313030;
    font-weight: 600;
    transition: color 0.3s;
}

.tm_nav_menu .nav_item a:hover {
  color: #28a745; /* green hover like your theme */
}

.dropdown_menu {
  position: absolute;
  top: 170%; /* creates the gap like in screenshot */
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-top: 2px solid #543ee8;
  min-width: 300px;
  padding: 0px 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  list-style: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav_item.dropdown:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px); /* smooth slide-up effect */
}

.dropdown_menu li a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: #111;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s;
  border-bottom: 1px solid #d6d6d8;
}

.dropdown_menu li a:hover {
  background-color: #f9f9f9;
  color: #28a745; /* green hover effect */
}

.nav_item.dropdown:hover .dropdown_menu {
  display: block;
}

.tm_nav_right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.cart_icon {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 1.2rem;
}

.cart_badge {
    position: absolute;
    top: 12px;
    right: -8px;
    background: #6c5ce7;
    color: #fff;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 50%;
}




/* Mobile Toggle Button */
.tm_mobile_toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #111;
}

/* Mobile Slide-in Menu */
.tm_mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 270px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
  transition: left 0.3s ease;
  z-index: 2000;
  padding: 1rem;
}

.tm_mobile_menu.active {
  left: 0;
}

/* Close button inside mobile menu */
.tm_mobile_menu_header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.tm_mobile_close {
  background: #e74c3c;
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile nav items */
.tm_mobile_nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm_mobile_nav > li {
  border-bottom: 1px solid #eee;
}

.tm_mobile_nav a,
.mobile_link span {
  display: block;
  padding: 0.8rem 0;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}

.tm_mobile_nav a:hover {
  color: #543ee8;
}

/* Dropdown inside mobile */
.mobile_dropdown .mobile_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown_toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #543ee8;
  cursor: pointer;
  padding: 0;
}

/* Submenu (collapsed by default) */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .8s ease;
  padding-left: 1rem;
}

.submenu li a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: #444;
}

/* Show submenu when active */
.mobile_dropdown.open .submenu {
  max-height: 500px; /* enough to show all items */
}

.mobile_dropdown.open .dropdown_toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}


.tm_footer h5,h6{
  color: #000;
}

.tm_footer {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tm_footer .footer_brand img {
  object-fit: contain;
}

.tm_footer .footer_desc {
    font-size: 16px;
    color: #5f5d5d;
    line-height: 1.6;
}

.tm_footer .footer_social a {
  color: #000;
  font-size: 16px;
  transition: color 0.3s ease;
}

.tm_footer .footer_social a:hover {
  color: #6f42c1;
}

.tm_footer .footer_title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 22px;
}
.tm_footer .footer_links li {
  margin-bottom: 8px;
}

.tm_footer .footer_links a {
  text-decoration: none;
  color: #5f5d5d;
  transition: color 0.3s ease;
}

.tm_footer .footer_links a:hover {
  color: #6f42c1;
}

.tm_footer .footer_contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #343a40;
}

.tm_footer .footer_contact i {
    font-size: 18px;
    min-width: 20px;
    color: #784dc5;
}

.tm_footer .footer_contact span {
  line-height: 1.4;
  font-size: 16px;
}

.tm_footer .btn-purple {
  background-color: #6f42c1;
  color: #fff;
  border: none;
}

.tm_footer .btn-purple:hover {
  background-color: #59359c;
}


.tm_footer .footer-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Bottom-left squiggle (green) */
.tm_footer .shape-1 {
  bottom: 80px;
  left: 0;
  width: 100px;
}

/* Animation Keyframes */
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Top-right circles (beige) */
/*.tm_footer .shape-2 {
    top: 13px;
    right: 115px;
    width: 60px;
}*/

/* Apply to only .shape-2 */
.tm_footer .shape-2 {
  top: 13px;
    right: 115px;
  width: 60px;
  animation: floatUpDown 3s ease-in-out infinite;
}

/* Bottom-right yellow ring */
.tm_footer .shape-3 {
  bottom: 0;
  right: 0;
  width: 120px;
}

.tm_footer_bottom{
  background-color: #ececec; padding: 20px 0px;
}

.tm_footer_bottom .footer-link {
  color: #6c757d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.tm_footer_bottom .footer-link:hover {
  color: #6f42c1; /* match your brand purple */
  text-decoration: underline;
}



/* Scoped Styles for Hero Slider */
.tm_hero_slider {
  background: linear-gradient(135deg, #f7f7f7 0%, #e0f7fa 100%);
}

.tm_hero_slider__carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #007bff !important;
  border-radius: 50%;
  transition: background 0.3s;
}

.tm_hero_slider__carousel .owl-dots .owl-dot.active span {
  background: #0056b3 !important;
}

.tm_hero_slider__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #101010;
}

.tm_hero_slider__text {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 20px 0;
}

.tm_hero_slider__btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
}

.tm_hero_slider .highlight {
  background-color: #ffd600;
  padding: 2px 10px;
  border-radius: 4px;
  display: inline-block;
}




/* Global Section Styles */
.tm_service_home_page {
  /*background-color: #f8f9fa;*/ /* light grey background */
}

.tm_service_home_page h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}

.btn-purple {
  background-color: #6c5ce7;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.btn-purple:hover {
  background-color: #5a4bb0;
}

/* Category Cards Styling */
/*.category-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.category-card .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-size: 2rem;
}*/

.category-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 15px; /* <-- This creates space between icon and content */
}

/* Adjust icon size */
.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}




/* Icon Color for Each Category */
.bg-purple { background-color: #6c5ce7; }
.bg-teal { background-color: #00bfae; }
.bg-orange { background-color: #fd7e14; }
.bg-yellow { background-color: #fcd301; }
.bg-purple-light { background-color: #9b84f4; }
.bg-red { background-color: #e74a3b; }
.bg-blue { background-color: #3498db; }
.bg-teal-light { background-color: #2ecc71; }

/* Category Title and Count */
.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3c3c3c;
}

.category-count {
  font-size: 1rem;
  color: #6c757d;
}

/* Responsive design */
@media (max-width: 768px) {
  .category-card {
    margin: 10px 0;
  }
}

.category-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}


.tm_about_us {
    padding: 60px 0;
}

.tm_about_us .container {
    max-width: 1200px;
}

.tm_about_us h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
    color: #002112;
    text-transform: capitalize;
}

.tm_about_us p {
    font-size: 14px;
    color: #5d5c5c;
    line-height: 26px;
}

.tm_about_us small {
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.feature-list li::before {
    content: "\f2dd"; /* Unicode for bi-check-circle-fill */
    font-family: "FontAwesome";
    font-weight: normal;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #28a745; /* Bootstrap 'text-success' green */
    font-size: 1.2rem;
}


.tm_about_us1 .counter-card1 {
    position: absolute;
    top: 70%;
    left: 10%;
    background-color: rgb(255 255 255 / 94%);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tm_about_us .counter-card {
    background-color: rgb(255 255 255 / 94%);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 220px;
    bottom: 80px;
    left: 60px;
}

.tm_about_us .counter-card .icon i {
    font-size: 2rem;
}

.tm_about_us .counter-card .counter {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc3545;
}

.tm_about_us .counter-card p {
    margin-bottom: 0;
    color: #333;
}

.tm_about_us .counter-card .text-dark {
    font-size: 1rem;
}

.g-10 {
  --bs-gutter-x: 6rem;
  --bs-gutter-y: 6rem;
}
.g-20 {
  --bs-gutter-x: 12rem;
  --bs-gutter-y: 12rem;
}




.tm_trainer {padding:100px 0px;}

    h2.section-heading {
      text-align: center;
      font-weight: 700;
      margin: 40px 0 30px;
    }

    .article-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: #fff;
    }

    .article-image {
      position: relative;
      background-color: #f2f2f2;
      height: 250px;
      overflow: hidden;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .article-image:hover img {
      transform: scale(1.1);
    }

    .category-badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background-color: #5e3bee;
      color: white;
      padding: 10px 24px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.3s;
    }

    .category-badge:hover {
      background-color: #442baf;
    }

    .article-meta {
      font-size: 0.9rem;
      color: #555;
      margin-top: 10px;
    }

    .article-meta i {
      margin-right: 5px;
    }

    .article-title {
      font-weight: 700;
      font-size: 1rem;
      margin-top: 10px;
    }

    .article-title a {
      color: #000;
      text-decoration: none;
      transition: color 0.3s;
    }

    .article-title a:hover {
      color: #5e3bee;
    }

    .owl-nav {
      text-align: center;
      margin-top: 20px;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
      background-color: #5e3bee !important;
      color: #fff !important;
      padding: 8px 16px !important;
      border-radius: 50% !important;
      margin: 0 5px;
      border: none;
      font-size: 1.5rem !important;
      line-height: 1;
    }



/* Container for heading + custom nav */
    .heading-nav-wrap {
      display: flex;
      justify-content: center; /* center items by default */
      align-items: center;
      position: relative;
      margin-bottom: 50px;
    }

    .heading-nav-wrap h2.section-heading {
      margin: 0;
      flex: 1;
      text-align: center;
      color: #002112;
    }

    /* Custom nav buttons wrapper positioned absolutely on right */
    #customNav {
      position: absolute;
      right: 0;
      display: flex;
      gap: 8px;
    }

    #customNav .btn {
      background-color: #9a83f7;
      border: none;
      color: #fff;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      padding: 0;
    }

    #customNav .btn:hover {
      background-color: #442baf;
    }

    @media (max-width: 576px) {
      .heading-nav-wrap {
        justify-content: space-between; /* move heading to left and buttons to right */
        padding-right: 10px; /* optional spacing */
      }
      .heading-nav-wrap h2.section-heading {
        text-align: left;
      }
    }



    .tm_testimonial_area h6,h2 {
       color: #000;
    }
    .tm_testimonial_area {
      background-color: #f7f7f7;
      padding: 60px 0;
    }



    .testimonial-item {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .testimonial-text {
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      margin-top: 15px;
    }

    .rating i {
      color: #f1c40f;
    }

    .testimonial-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 25px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .author-img {
      width: 50px!important;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info {
      margin-left: 15px;
    }

    .author-info h5 {
      margin: 0;
      font-size: 16px;
      font-weight: bold;
      color: #222;
    }

    .author-info p {
      margin: 0;
      font-size: 14px;
      color: #777;
    }

    .testimonial-controls {
      margin-top: 25px;
      text-align: right;
    }

    .testimonial-controls button {
      background: none;
      border: none;
      font-size: 24px;
      color: #6c5ce7;
      transition: color 0.3s ease;
    }

    .testimonial-controls button:hover {
      color: #341f97;
    }

    .large-image {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .counter-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 220px;
  bottom: 146px; left: -150px;
}

.counter-card .icon {
  font-size: 14px;
  color: #e74c3c;
}

.counter-card .counter {
  font-size: 28px;
  font-weight: bold;
  color: #e74c3c;
}


/*    .counter-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .counter-card .icon {
      font-size: 30px;
      color: #e74c3c;
    }

    .counter-card .counter {
      font-size: 32px;
      font-weight: bold;
      color: #e74c3c;
    }*/



@media (max-width: 575.98px) { 
.tm_no_margin {margin-top: 0px;}


    .counter-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 220px;
  bottom: 10px; left: 10px;
}

 }


@media (min-width: 768px) and (max-width: 991.98px) {

.tm_no_margin {margin-top: 0px;}
}



.tm_blog_area { margin: 80px 0px; }
.tm_blog_area h2.section-heading {
  text-align: center;
  font-weight: 700;
  margin: 40px 0 30px;
}

.tm_blog_area .article-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.tm_blog_area .article-image {
  position: relative;
  background-color: #f2f2f2;
  height: 250px;
  overflow: hidden;
}

.tm_blog_area .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tm_blog_area .article-image:hover img {
  transform: scale(1.1);
}

.tm_blog_area .category-badge {
  position: absolute;
  bottom: 210px;
  left: 10px;
  background-color: #ffcd20;
  color: #263238;
  padding: 5px 24px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}

.tm_blog_area .category-badge:hover {
  background-color: #442baf;
  color: #fff;
}

.tm_blog_area .article-meta {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.tm_blog_area .article-meta i {
  margin-right: 5px;
}

.tm_blog_area .article-title {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
}

.tm_blog_area .article-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.tm_blog_area .article-title a:hover {
  color: #5e3bee;
}

.tm_blog_area .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.tm_blog_area .owl-nav button.owl-prev,
.tm_blog_area .owl-nav button.owl-next {
  background-color: #5e3bee !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 50% !important;
  margin: 0 5px;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1;
}

/* Container for heading + custom nav */
.tm_blog_area .heading-nav-wrap {
  display: flex;
  justify-content: center; /* center items by default */
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.tm_blog_area .heading-nav-wrap h2.section-heading {
  margin: 0;
  flex: 1;
  text-align: center;
}

/* Custom nav buttons wrapper positioned absolutely on right */
.tm_blog_area #customNav {
  position: absolute;
  right: 0;
  display: flex;
  gap: 8px;
}

.tm_blog_area #customNav .btn {
  background-color: #5e3bee;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}

.tm_blog_area #customNav .btn:hover {
  background-color: #442baf;
}

@media (max-width: 576px) {
  .tm_blog_area .heading-nav-wrap {
    justify-content: space-between; /* move heading to left and buttons to right */
    padding-right: 10px; /* optional spacing */
  }
  .tm_blog_area .heading-nav-wrap h2.section-heading {
    text-align: left;
  }
}

.footer_desc a{ text-decoration: none; }


    /* ====== Component Base CSS ====== */
    .tm_counter {
      background: #011c1a; /* green background (replace with your pattern if needed) */
      padding: 60px 20px;
      color: #fff;
    }

    .tm-counter-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 15px;
    }

    /* === Circle Progress === */
    .tm-counter-circle {
      position: relative;
      width: 120px;
      height: 120px;
    }

    .tm-counter-circle svg {
      transform: rotate(-90deg);
      width: 120px;
      height: 120px;
    }

    /* Yellow background circle */
    .tm-counter-circle .bg-circle {
      fill: #c6a04f; 
      stroke: none;
    }

    /* White progress border */
    .tm-counter-circle .progress {
      fill: none;
      stroke: #fff;
      stroke-width: 4;
      /*stroke-linecap: round;*/
      stroke-dasharray: 314; /* circumference for r=50 */
      stroke-dashoffset: 314;
      transition: stroke-dashoffset 1.5s ease;
    }

    .tm-counter-value {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: bold;
      font-size: 20px;
      color: #000;
    }

    /* Text Content */
    .tm-counter-content h4 {
      margin: 0 0 8px;
      font-weight: 600;
      color: #fff;
      font-size: 20px;
    }
    .tm-counter-content p {
      margin: 0;
      font-size: 14px;
      color: #b1b1b1;
    }