/* 
 * Fonts are loaded via <link> tags in header.php for better performance.
 * Using @import blocks CSS parsing until fonts are loaded.
 * Fonts included: Mukta, Baloo 2, Khand, Poppins
 */


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mukta', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  opacity: 1 !important;
  transition: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}




/* General Reset for Box Sizing */
* {
  box-sizing: border-box;
}

/* Container */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;

}





/* 12 Column Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  /* Remove any margin */
  padding: 0;
  /* Remove any padding */
}

/* Column Base */
[class*="col-"] {
  padding: 0;
  /* Remove padding inside columns */
}


/* Column Widths - Default (Small devices) */
.col-1,
.col-sm-1 {
  width: 8.33%;
}

.col-2,
.col-sm-2 {
  width: 16.66%;
}

.col-3,
.col-sm-3 {
  width: 25%;
}

.col-4,
.col-sm-4 {
  width: 33.33%;
}

.col-5,
.col-sm-5 {
  width: 41.66%;
}

.col-6,
.col-sm-6 {
  width: 50%;
}

.col-7,
.col-sm-7 {
  width: 58.33%;
}

.col-8,
.col-sm-8 {
  width: 66.66%;
}

.col-9,
.col-sm-9 {
  width: 75%;
}

.col-10,
.col-sm-10 {
  width: 83.33%;
}

.col-11,
.col-sm-11 {
  width: 91.66%;
}

.col-12,
.col-sm-12 {
  width: 100%;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.33%;
  }

  .col-md-2 {
    width: 16.66%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33%;
  }

  .col-md-5 {
    width: 41.66%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33%;
  }

  .col-md-8 {
    width: 66.66%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33%;
  }

  .col-md-11 {
    width: 91.66%;
  }

  .col-md-12 {
    width: 100%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.33%;
  }

  .col-lg-2 {
    width: 16.66%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33%;
  }

  .col-lg-5 {
    width: 41.66%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33%;
  }

  .col-lg-8 {
    width: 66.66%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33%;
  }

  .col-lg-11 {
    width: 91.66%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.33%;
  }

  .col-xl-2 {
    width: 16.66%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.33%;
  }

  .col-xl-5 {
    width: 41.66%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.33%;
  }

  .col-xl-8 {
    width: 66.66%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33%;
  }

  .col-xl-11 {
    width: 91.66%;
  }

  .col-xl-12 {
    width: 100%;
  }
}

/* Utility classes for flexbox */
.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}






/* Margin and padding utilities */
.mm-b-5 {
  margin-bottom: -5px;
}

.mm-b-10 {
  margin-bottom: -10px;
}

.mm-b-15 {
  margin-bottom: -15px;
}

.mm-b-20 {
  margin-bottom: -20px;
}

.mm-b-25 {
  margin-bottom: -25px;
}

/* margin-bottom */

.m-margin-bottom-10 {
  margin-bottom: 10px;
}

.m-margin-bottom-20 {
  margin-bottom: 20px;
}

.m-margin-bottom-30 {
  margin-bottom: 30px;
}

.m-margin-bottom-40 {
  margin-bottom: 40px;
}


@media (max-width: 768px) {
  .m-margin-bottom-10 {
    margin-bottom: 10px;
  }

  .m-margin-bottom-20 {
    margin-bottom: 20px;
  }

  .m-margin-bottom-30 {
    margin-bottom: 30px;
  }

  .m-margin-bottom-40 {
    margin-bottom: 40px;
  }
}



/* minus margin bottom */
.minus-margin-bottom-10 {
  margin-bottom: 0px;
}

.minus-margin-bottom-20 {
  margin-bottom: 0px;
}

.minus-margin-bottom-25 {
  margin-bottom: 0px;
}

.minus-margin-bottom-30 {
  margin-bottom: 0px;
}

.minus-margin-bottom-40 {
  margin-bottom: 0px;
}

.minus-margin-bottom-50 {
  margin-bottom: 0px;
}


@media (max-width: 768px) {
  .minus-margin-bottom-10 {
    margin-bottom: -10px;
  }

  .minus-margin-bottom-20 {
    margin-bottom: -20px;
  }

  .minus-margin-bottom-25 {
    margin-bottom: -25px;
  }

  .minus-margin-bottom-30 {
    margin-bottom: -30px;
  }

  .minus-margin-bottom-40 {
    margin-bottom: -40px;
  }

  .minus-margin-bottom-50 {
    margin-bottom: -50px;
  }
}


/* minus margin top */

.minus-margin-top-10 {
  margin-top: 0px;
}

.minus-margin-top-20 {
  margin-top: 0px;
}

.minus-margin-top-25 {
  margin-top: 0px;
}

.minus-margin-top-30 {
  margin-top: 0px;
}

.minus-margin-top-40 {
  margin-top: 0px;
}

.minus-margin-top-50 {
  margin-top: 0px;
}

.minus-margin-top-60 {
  margin-top: 0px;
}

.minus-margin-top-70 {
  margin-top: 0px;
}

.minus-margin-top-80 {
  margin-top: 0px;
}

.minus-margin-top-90 {
  margin-top: 0px;
}

.minus-margin-top-100 {
  margin-top: 0px;
}


@media (max-width: 768px) {
  .minus-margin-top-10 {
    margin-top: -10px;
  }

  .minus-margin-top-20 {
    margin-bottom: -20px;
  }

  .minus-margin-top-25 {
    margin-top: -25px;
  }

  .minus-margin-top-30 {
    margin-top: -30px;
  }

  .minus-margin-top-40 {
    margin-top: -40px;
  }

  .minus-margin-top-50 {
    margin-top: -50px;
  }

  .minus-margin-top-60 {
    margin-top: -60px;
  }

  .minus-margin-top-70 {
    margin-top: -70px;
  }

  .minus-margin-top-80 {
    margin-top: -80px;
  }

  .minus-margin-top-90 {
    margin-top: -90px;
  }

  .minus-margin-top-100 {
    margin-top: -100px;
  }
}

/* desktop margin top */

.d-margin-top-10 {
  margin-top: 10px;
}

.d-margin-top-20 {
  margin-top: 20px;
}

.d-margin-top-30 {
  margin-top: 30px;
}

.d-margin-top-40 {
  margin-top: 40px;
}

.d-margin-top-50 {
  margin-top: 50px;
}

.d-margin-top-60 {
  margin-top: 60px;
}

.d-margin-top-70 {
  margin-top: 70px;
}

.d-margin-top-80 {
  margin-top: 80px;
}

.d-margin-top-90 {
  margin-top: 90px;
}

.d-margin-top-100 {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .d-margin-top-10 {
    margin-top: 0px;
  }

  .d-margin-top-20 {
    margin-top: 0px;
  }

  .d-margin-top-30 {
    margin-top: 0px;
  }

  .d-margin-top-40 {
    margin-top: 0px;
  }

  .d-margin-top-50 {
    margin-top: 0px;
  }

  .d-margin-top-60 {
    margin-top: 0px;
  }

  .d-margin-top-70 {
    margin-top: 0px;
  }

  .d-margin-top-80 {
    margin-top: 0px;
  }

  .d-margin-top-90 {
    margin-top: 0px;
  }

  .d-margin-top-100 {
    margin-top: 0px;
  }
}

/* desktop margin bottom */
.d-margin-bottom-10 {
  margin-bottom: 10px;
}

.d-margin-bottom-20 {
  margin-bottom: 20px;
}

.d-margin-bottom-30 {
  margin-bottom: 30px;
}

.d-margin-bottom-40 {
  margin-bottom: 40px;
}

.d-margin-bottom-50 {
  margin-bottom: 50px;
}

.d-margin-bottom-60 {
  margin-bottom: 60px;
}

.d-margin-bottom-70 {
  margin-bottom: 70px;
}

.d-margin-bottom-80 {
  margin-bottom: 80px;
}

.d-margin-bottom-90 {
  margin-bottom: 90px;
}

.d-margin-bottom-100 {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .d-margin-bottom-10 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-20 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-30 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-40 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-50 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-60 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-70 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-80 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-90 {
    margin-bottom: 0px;
  }

  .d-margin-bottom-100 {
    margin-bottom: 0px;
  }
}





/* minus-top-end */

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.p-1 {
  padding: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

/* Text alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Display properties */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}




/* desktop-margin5 */
.desktop-margin5 {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .desktop-margin5 {
    margin-right: 0;
  }
}


/* Responsive display classes */
@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }

  .d-sm-block {
    display: block;
  }

  .d-sm-flex {
    display: flex;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }

  .d-md-block {
    display: block;
  }

  .d-md-flex {
    display: flex;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }

  .d-lg-block {
    display: block;
  }

  .d-lg-flex {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none;
  }

  .d-xl-block {
    display: block;
  }

  .d-xl-flex {
    display: flex;
  }
}

/* mobile-logo */

/* Sticky Logo Styles */
.logo-container {
  margin-bottom: -15px;
}



.sticky-logo {
  display: none;
  float: left;
  padding: 10px 0;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.fixed-nav .sticky-logo {
  display: block;
}

.sticky-logo img {
  max-height: 36px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo img {
  max-height: 65px;
  width: auto;
  transition: all 0.3s ease;
  margin-top: -15px;
  margin-left: -5px;
}

/* protech-banner-ads */
.protech-banner-ads {
  width: 100%;
  /* make it take full width of container */
  max-width: 1300px;
  /* but not exceed the original width */
  height: auto;
  /* allow height to adjust */
  overflow: hidden;
  margin: 0 auto;
  /* center horizontally */
  margin-top: 15px;
}

/* Optional: ensure images or content inside scale properly */
.protech-banner-ads img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* header module */
.protech-header {
  color: #0a4ea3;
  /* Blue color for text */
  font-size: 60px;
  /* Font size for the header */
  font-weight: bold;
  letter-spacing: 3px;
  /* Space between letters */
  margin: 0;
  /* Remove default margin */
}

/* header end here */

/* Main Content Styles */
.main-content {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 0 15px;
}

.news-section {
  width: 100%;
  margin-bottom: 20px;
}

.sidebar {
  width: 100%;
  background-color: #dfdfdf;
  padding: 15px;
  border-top: 1px solid #ddd;
}

/* Hero Section */
.hero {
  background-color: #0a4ea3;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-image {
  height: 300px;
  background-color: #0a4ea3;
  position: relative;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.hero-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 15px;
}

.timestamp {
  font-size: 12px;
  color: #ccc;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.news-card {

  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  transition: opacity 0.3s;
}

.news-card:hover {
  opacity: 0.8;
}

.card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 15px;
}

.card-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* Section Titles */
.section-title {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0a4ea3;
}

/* Market Data */
.market-data {
  margin-bottom: 30px;
}

.market-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.market-name {
  font-weight: bold;
}

.market-value {
  font-weight: bold;
}

.up {
  color: #0a9e01;
}

.down {
  color: #c9140b;
}

/* Latest News List */
.latest-news-list {
  margin-bottom: 30px;
}

.latest-news-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.latest-news-title {
  font-weight: bold;
  margin-bottom: 5px;
}


/* Nav Container Sticky Styles */
.nav-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.fixed-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fixed-nav-margin {
  margin-top: 50px !important;
  /* Adjust based on your nav height */
}

/* Responsive Styles */
/* Desktop Large Screens */
@media (min-width: 1400px) {
  .main-content {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .news-section {
    width: 75%;
    padding-right: 20px;
  }

  .sidebar {
    width: 25%;
    border-top: none;
    border-left: 1px solid #ddd;
  }
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 250px;
  }

  .hero-title {
    font-size: 22px;
  }
}



/* pagination */

.ts-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.ts-pagination li {
  margin: 0 8px;
}

.ts-pagination li a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #0a4ea3;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ts-pagination li a:hover {
  background-color: #0a4ea3;
  border-color: #0a4ea3;
}

.ts-pagination .current a {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  border-color: #0a4ea3;
}

.ts-pagination .prev,
.ts-pagination .next {
  background-color: #6c757d;
  padding: 10px 15px;
  border-radius: 5px;
}

.ts-pagination .prev a,
.ts-pagination .next a {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}

.ts-pagination .prev a:hover,
.ts-pagination .next a:hover {
  background-color: #5a6268;
}

.ts-pagination .disabled a {
  background-color: #e0e0e0;
  color: #6c757d;
  pointer-events: none;
}

.ts-pagination li a:active {
  transform: scale(0.95);
}

.ts-pagination .prev,
.ts-pagination .next {
  background-color: #0a4ea3;
  color: white;
  border-radius: 6px;
  padding: 12px 20px;
}

.ts-pagination .prev:hover,
.ts-pagination .next:hover {
  background-color: #0a4ea3;
}

.ts-pagination .current {
  font-size: 18px;
  font-weight: bold;
  background-color: #0a4ea3 !important;
  color: white;
  border-radius: 8px;
  padding: 10px 18px;
}

.ts-pagination li a {
  font-size: 16px;
}

.ts-pagination .prev a,
.ts-pagination .next a {
  font-size: 14px;
}

/* Mobile responsiveness for pagination */
@media (max-width: 768px) {
  .ts-pagination {
    flex-wrap: wrap;
  }

  .ts-pagination li {
    margin: 4px;
  }

  .ts-pagination li a {
    padding: 8px 14px;
    font-size: 14px;
  }

  .ts-pagination .current {
    font-size: 14px;
    padding: 8px 14px;
  }

  .ts-pagination .prev,
  .ts-pagination .next {
    padding: 8px 12px;
  }

  .ts-pagination .prev a,
  .ts-pagination .next a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .ts-pagination {
    justify-content: space-around;
  }

  .ts-pagination li {
    margin: 3px;
  }

  .ts-pagination li a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .ts-pagination .current {
    font-size: 12px;
    padding: 6px 10px;
  }

  .ts-pagination .prev,
  .ts-pagination .next {
    padding: 6px 8px;
  }

  .ts-pagination .prev a,
  .ts-pagination .next a {
    font-size: 10px;
  }
}

/* pagination end */

/* Responsive visibility classes */
.hide-on-desktop {
  display: block;
}

.hide-on-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-on-desktop {
    display: none;
  }

  .hide-on-mobile {
    display: block;
  }
}

/* dropdown menu */

.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 12px;
}



/* dropdown menu end */

/* sticky sider */

/* sticky */

.protech-sticky {
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  top: 10px;
  height: fit-content;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .protech-sticky {
    position: static;
    /* Remove sticky positioning on mobile */
    margin-bottom: 15px;
    /* Adjust margin as needed */
  }
}


/* sticky sider end */

/* border-right */

.protech-border-right {
  border-right: 1px solid #e5e5e5;


}

@media (max-width: 768px) {
  .protech-border-right {
    border-right: none;
    /* Remove sticky positioning on mobile */
    margin-bottom: 15px;
    /* Adjust margin as needed */
  }
}

/* border-right end */

/* divider line */

.d-divider-line {
  border: 1px solid #ddd;
  margin-left: 75px;
  margin-right: 75px;
}

@media (max-width: 768px) {
  .d-divider-line {
    border: none;
    /* Remove sticky positioning on mobile */

  }
}




/* Hide by default (for desktop and all screens) */
.mobile-divider-line {
  display: none;
}

/* Show only on mobile screens (768px and below) */
@media (max-width: 768px) {
  .mobile-divider-line {
    display: block;
    border: 1px solid #ddd;
    margin-left: 15px;
    margin-right: 15px;
  }
}




/* protech-category-module */

.protech-title {
  display: flex;
  align-items: center;

  font-size: 30px;
  font-weight: bold;
  color: #000;
}

.protech-title-text {
  white-space: nowrap;
}

.protech-title-line {
  flex-grow: 1;
  height: 1px;
  background-color: #e5e5e5;
  margin-left: 10px;
}

/* protech-category-module end */

/* protech-category-module new-------------------------------- */



.p5-cat-module-section {
  width: 100%;
  padding: 24px 0 18px 0;
  box-sizing: border-box;
}

.p5-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  gap: 18px;
}

.p5-cat-module-title {
  font-family: 'Khand', sans-serif !important;
  font-weight: 800;
  font-size: 30px;
  color: #c9140b;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  padding: 0 24px 0 16px;
  position: relative;
}

.p5-cat-module-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, #c9140b, #0a4ea3);
}

.p5-cat-module-title a {
  color: inherit;
  text-decoration: none;
  font-family: inherit !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.p5-cat-module-title a:hover {
  color: #0a4ea3;
  transform: translateY(-1px);
}

.p5-cat-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, #c9140b, rgba(201, 20, 11, 0.08));
  margin-top: 5px;
}

.p5-cat-see-more {
  font-family: 'Mukta', sans-serif;
  font-size: 15px;
  color: #0a4ea3;
  text-decoration: none;
  font-weight: 700;
  margin-left: 12px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 66, 158, 0.15);
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.p5-cat-see-more:hover {
  color: #ffffff;
  background-color: #0a4ea3;
  border-color: #0a4ea3;
  transform: translateX(3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.p5-cat-see-more i {
  font-size: 14px;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  .p5-cat-module-section {
    padding: 18px 0 14px 0;
  }

  .p5-cat-module-title {
    font-size: 22px;
    padding: 0 12px 0 12px;
  }

  .p5-cat-header {
    gap: 8px;
  }

  .p5-cat-see-more {
    font-size: 13px;
    padding: 4px 10px;
    margin-left: 0;
    gap: 4px;
  }
}

@media screen and (max-width: 480px) {
  .p5-cat-module-title {
    font-size: 18px;
    padding: 0 8px 0 10px;
  }

  .p5-cat-header {
    gap: 6px;
  }

  .p5-cat-line {
    margin-top: 3px;
  }

  .p5-cat-see-more {
    font-size: 12px;
    padding: 3px 8px;
    gap: 3px;
  }
}

/* protech-category-module new end-------------------------------- */
/* background color */

.protech-bg {

  background-color: #dfdfdf;
  padding: 20px;
  border-radius: 8px;
}

.protech-bg-white {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}





/* Blockquote Styling - Traditional Red Design */
blockquote {
  position: relative !important;
  padding: 0 0 0 45px !important;
  margin: 15px 0 5px 0 !important;
  border-left: 1px dashed #d1d1d1 !important;
  background: transparent !important;
  font-style: normal !important;
  color: #c9140b !important;
  line-height: 1.5 !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  overflow: visible !important;
  transition: all 0.3s ease;
}

/* Large Pale Red Quote Icon */
blockquote::before {
  content: '\201C';
  position: absolute;
  left: 20px;
  top: -20px;
  font-family: 'Times New Roman', serif;
  font-size: 8rem;
  color: rgba(201, 20, 11, 0.15);
  line-height: 1;
  z-index: -1;
}

/* Remove any after elements */
blockquote::after {
  content: none;
}

/* Author/Cite Styling */
blockquote cite,
blockquote footer,
blockquote .cite {
  display: block;
  margin-top: 5px !important;
  font-style: normal;
  font-weight: 600;
  color: #555;
  font-size: 1rem;
}

blockquote cite::before {
  content: "— ";
}

/* Paragraph handling */
blockquote p {
  margin: 0 !important;
  color: inherit !important;
  padding: 0 !important;
}

blockquote p:not(:last-child) {
  margin-bottom: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  blockquote {
    padding-left: 35px !important;
    font-size: 1.15rem !important;
    margin: 15px 0 !important;
  }

  blockquote::before {
    font-size: 5.5rem !important;
    left: 12px !important;
    top: -12px !important;
  }

  blockquote cite,
  blockquote footer,
  blockquote .cite {
    font-size: 0.9rem;
    margin-top: 5px !important;
  }
}

@media (max-width: 480px) {
  blockquote {
    padding-left: 30px !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
  }

  blockquote::before {
    font-size: 4.5rem !important;
    left: 8px !important;
    top: -10px !important;
  }
}

@media (max-width: 360px) {
  blockquote {
    padding-left: 25px !important;
    font-size: 1.05rem !important;
    margin: 10px 0 !important;
  }

  blockquote::before {
    font-size: 3.8rem !important;
    left: 6px !important;
    top: -8px !important;
  }
}

/* blockquote end */


/* bullet style */

.bullet-style,
.post-content ul,
.post-content ol {
  list-style-type: disc;
  list-style-position: outside;
  margin: 20px 0;
  padding-left: 30px;
  line-height: 1.8;
}

.bullet-style li,
.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000;
  /* font-family: 'Mukta', sans-serif; */
  line-height: 1.8;
  padding-left: 8px;
}

/* Nested lists */
.bullet-style ul,
.post-content ul ul,
.post-content ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 30px;
  list-style-type: disc;
}

/* Ordered lists styling */
.post-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 30px;
}

.post-content ol li {
  padding-left: 8px;
  color: #000;
}

/* Nested ordered lists */
.post-content ol ol {
  list-style-type: lower-alpha;
  margin-top: 8px;
  padding-left: 30px;
}

.post-content ol ol ol {
  list-style-type: lower-roman;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .bullet-style,
  .post-content ul,
  .post-content ol {
    padding-left: 25px;
  }

  .bullet-style li,
  .post-content ul li,
  .post-content ol li {
    font-size: 18px;
    margin-bottom: 8px;
  }
}



/* bullet style end */






/* btn--------------------------- */

.btn {
  background-color: #c9140b;
  /* Maroon-like color */
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 7px 19px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* font-family: Arial, sans-serif; */
}

.btn:hover {
  background-color: #0a4ea3;
  /* Dark blue color on hover */
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* btn end */


/* header p6 ----------------------------------*/

.p6-cat-module-section {
  width: 100%;
  padding: 20px 0 5px 0;
  box-sizing: border-box;
  margin-bottom: -20px;
}

/* Container for text and yellow line */
.p6-title-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  /* spacing from lines above */
}

/* Title wrapper to contain the title and its yellow line */
.p6-title-wrapper {
  position: relative;
  display: inline-block;
}

/* Yellow line exactly text width */
.p6-cat-module-yellow-line {
  height: 4px;
  background-color: #c9140b;
  width: 100%;
  position: absolute;
  top: -10px;
  /* position above the title */
  left: 0;
}

/* Gray line full width */
.p6-cat-module-gray-line {
  height: 1px;
  background-color: #E5E5E5;
  width: 100%;
  position: relative;
  /* normal flow */
  margin-bottom: -6px;
  /* spacing below gray line */
}

.p6-cat-module-title {
  /* font-family: 'Khand', sans-serif; */
  font-weight: 700;
  font-size: 24px;
  color: #0a4ea3;
  text-transform: uppercase;
  margin: 0;
}

.p6-cat-module-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.p6-cat-module-title a:hover {
  color: #0a4ea3;
}

/* Sub header container */
.p6-sub-header-container {
  position: relative;
  max-width: 70%;
  text-align: left;
  margin-right: auto;
}

/* New styles for sub-header */
.p6-cat-sub-header {
  margin-left: 0;
  position: relative;
  left: 10px;
  text-align: left;
  /* Align text to left */
  font-size: 16px;
  /* Increased font size from 14px */
  margin: 0;
  /* Remove default margin */
  font-weight: 400;
  /* font-family: 'Khand', sans-serif; */
  width: 100%;
  /* Full width of container */
  overflow-x: auto;
  /* Enable horizontal scrolling */
  white-space: nowrap;
  /* Prevent wrapping to new line */
  -ms-overflow-style: none;
  /* Hide scrollbar in IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar in Firefox */
  padding-bottom: 10px;
  /* Space for scroll indicator */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.p6-cat-sub-header::-webkit-scrollbar {
  display: none;
}

.p6-cat-sub-header a {
  color: #0a4ea3;
  text-decoration: none;
  /* Already set to none, but making it explicit */
  margin-left: 15px;
  font-weight: 400;
  font-size: 16px;
  /* Increased font size from 14px */
  padding: 3px 8px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background-color: #f8f8f8;
  transition: all 0.2s ease;
  display: inline-block;
  border-bottom: none;
  /* Ensuring no bottom border that might look like underline */
  outline: none;
  /* Remove any outline that might appear as underline */
  text-align: left;
}

.p6-cat-sub-header a:first-child {
  margin-left: 0;
}

.p6-cat-sub-header a:hover {
  color: #ffffff;
  background-color: #0a4ea3;
  border-color: #0a4ea3;
  text-decoration: none;
  /* Ensuring no underline on hover */
}

/* Scroll indicator */
.p6-scroll-indicator {
  display: none;
  /* Hidden by default, shown only when needed */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  text-align: center;
}

/* Only show scroll indicator on mobile devices */
@media screen and (max-width: 768px) {
  .has-overflow .p6-scroll-indicator {
    display: block;
  }
}

.p6-scroll-track {
  display: none;
  /* Hide by default on all devices */
  width: 100%;
  height: 3px;
  background-color: #e5e5e5;
  border-radius: 2px;
  position: relative;
}

/* Show scroll track only on mobile */
@media screen and (max-width: 768px) {
  .p6-scroll-track {
    display: block;
    /* Show on mobile */
  }

  .p6-scroll-thumb {
    display: block;
    /* Ensure thumb is visible on mobile */
  }

  /* Make scroll progress more visible on mobile */
  .has-overflow .p6-scroll-thumb {
    background-color: #0a4ea3;
    /* More visible color */
    height: 100%;
    min-width: 30px;
    /* Ensure thumb has a minimum width */
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .p6-cat-module-section {
    padding: 30px 0 15px 0;
  }

  .p6-cat-module-title {
    font-size: 20px;
  }

  .p6-sub-header-container {
    max-width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .p6-cat-module-section {
    padding: 20px 0 10px 0;
  }

  .p6-title-container {
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .p6-sub-header-container {
    margin-top: 5px;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-left: -10px;
  }

  .p6-cat-sub-header {
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  .p6-cat-module-yellow-line {
    height: 3px;
    top: -5px;
  }

  .p6-cat-module-title {
    font-size: 18px;
  }
}

/* JavaScript will add this class when content is scrollable */
.has-overflow .p6-scroll-indicator {
  display: block;
}

/* header p6 end */

/* Hide mobile banner ads on desktop */
@media screen and (min-width: 768px) {
  .protech-banner-ads-mobile {
    display: none !important;
  }
}






/* Image Caption Styles - Fix for images going outside container */
.post-content p img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* WordPress Image Caption Containers */
.post-content .wp-caption,
.post-content .wp-block-image,
.post-content figure {
  max-width: 100% !important;
  width: auto !important;
  margin: 20px auto;
  overflow: hidden;
  box-sizing: border-box;
}

.post-content .wp-caption img,
.post-content .wp-block-image img,
.post-content figure img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Caption Text Styling */
.post-content .wp-caption-text,
.post-content .wp-block-image figcaption,
.post-content figcaption {
  margin-top: 10px;
  margin-bottom: -5px !important;
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  padding: 0 10px;
}

/* Center aligned captions */
.post-content .wp-block-image.aligncenter,
.post-content .wp-caption.aligncenter,
.post-content figure.aligncenter {
  text-align: center;
  margin: 20px auto;
}

.post-content .wp-block-image.aligncenter figcaption,
.post-content .wp-caption.aligncenter .wp-caption-text,
.post-content figure.aligncenter figcaption {
  text-align: center;
}

/* Left aligned captions */
.post-content .wp-block-image.alignleft,
.post-content .wp-caption.alignleft,
.post-content figure.alignleft {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 50%;
}

/* Right aligned captions */
.post-content .wp-block-image.alignright,
.post-content .wp-caption.alignright,
.post-content figure.alignright {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 50%;
}

/* Wide and full width images */
.post-content .wp-block-image.alignwide {
  max-width: 120%;
  margin-left: -10%;
  margin-right: -10%;
}

.post-content .wp-block-image.alignfull {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Responsive styles for image captions */
@media (max-width: 768px) {

  .post-content .wp-caption,
  .post-content .wp-block-image,
  .post-content figure {
    margin: 15px 0;
    max-width: 100% !important;
    width: 100% !important;
  }

  .post-content .wp-block-image.alignleft,
  .post-content .wp-caption.alignleft,
  .post-content figure.alignleft,
  .post-content .wp-block-image.alignright,
  .post-content .wp-caption.alignright,
  .post-content figure.alignright {
    float: none;
    max-width: 100%;
    margin: 15px 0;
  }

  .post-content .wp-caption-text,
  .post-content .wp-block-image figcaption,
  .post-content figcaption {
    font-size: 14px;
    padding: 0 5px;
  }

  .post-content .wp-block-image.alignwide,
  .post-content .wp-block-image.alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}






/* new main menu css start */