@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Khand:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mukta', Arial, 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;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.logo-container img {
  max-width: 70%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 0 auto;
}

/* Ensure the logo column centers its content */
.logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Override any existing column styles for logo */
.logo.col-4,
.logo.col-md-4,
.logo.col-lg-4 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}



.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: 11px;
  /* 70% reduction from 36px */
  width: auto;
  transition: all 0.3s ease;
}

.footer-logo img {
  max-height: 20px;
  /* 70% reduction from 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: #008dc9;
  /* Dark 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: #f5f5f5;
  padding: 15px;
  border-top: 1px solid #ddd;
}

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

.hero-image {
  height: 300px;
  background-color: #008dc9;
  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 #008dc9;
}

/* 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: #e3120b;
}

/* 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-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #008dc9;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ts-pagination li a:hover {
  background-color: #ca0d0d;
  border-color: #008dc9;
}

.ts-pagination .current a {
  background-color: #ca0d0d;
  color: white;
  font-weight: bold;
  border-color: #008dc9;
}

.ts-pagination .prev,
.ts-pagination .next {
  background-color: #008dc9;
  padding: 8px 16px;
  border-radius: 20px;
  min-width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ts-pagination .prev a,
.ts-pagination .next a {
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.ts-pagination .prev:hover,
.ts-pagination .next:hover {
  background-color: #ca0d0d;
  color: white;
}

.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: #008dc9;
  color: white;
  border-radius: 20px;
  min-width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ts-pagination .prev:hover,
.ts-pagination .next:hover {
  background-color: #ca0d0d;
  color: white;
}

.ts-pagination .current {
  font-size: 18px;
  font-weight: bold;
  background-color: #ca0d0d !important;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.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 {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .ts-pagination .current {
    font-size: 14px;
    width: 35px;
    height: 35px;
  }

  .ts-pagination .prev,
  .ts-pagination .next {
    min-width: 80px;
    height: 35px;
    padding: 0 12px;
    font-size: 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 {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .ts-pagination .current {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }

  .ts-pagination .prev,
  .ts-pagination .next {
    min-width: 70px;
    height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  .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: 20px 0 5px 0;
  box-sizing: border-box;


}

/* Container for text and yellow line */
.p5-title-container {
  display: inline-block;
  /* shrinkwrap width to text */
  position: relative;
  margin-top: 12px;
  /* spacing from lines above */
}

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

/* Blue line exactly text width */
.p5-cat-module-blue-line {
  height: 4px;
  background-color: #008dc9;
  width: 100%;
  position: absolute;
  top: -10px;
  /* position above the title */
  left: 0;
}

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

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

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

.p5-cat-module-title a:hover {
  color: #ca0d0d;
}

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

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

  .p5-cat-module-gray-line {
    margin-bottom: -2px;
  }
}

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

  .p5-title-container {
    margin-top: 8px;
  }

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

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

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

.protech-bg {

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

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





/* Blockquote Styling */
blockquote {
  padding: 20px 50px 20px 50px;
  /* Add more padding to the left and right */
  margin: 20px 0;
  border-left: 5px solid #3498db;
  /* Colorful left border */
  background-color: #f9f9f9;
  /* Light background */
  font-style: italic;
  /* Italics for emphasis */
  font-family: 'Mukta', sans-serif;
  /* Clean, modern font */
  color: #555;
  /* Soft text color */
  position: relative;
  /* For styling the pseudo-element */
  line-height: 1.8;
  /* Spacing for readability */
}

blockquote::before {
  content: '“';
  /* Opening quotation mark */
  font-size: 4rem;
  color: #3498db;
  /* Same as the left border */
  position: absolute;
  top: 10px;
  left: 10px;
  /* Adjusted position to the left */
}

blockquote::after {
  content: '”';
  /* Closing quotation mark */
  font-size: 4rem;
  color: #3498db;
  /* Same as the left border */
  position: absolute;
  bottom: 10px;
  right: 15px;
}

/* Responsive Blockquote Adjustments */
@media (max-width: 768px) {
  blockquote {
    font-size: 1.2rem;
    padding: 15px 30px;
    /* Adjust padding for mobile */
    margin: 15px 0;
  }

  blockquote::before,
  blockquote::after {
    font-size: 3rem;
    /* Smaller quote marks on mobile */
    left: 5px;
    right: 5px;
  }
}



/* blockquote end */



/* youtube embed */




.video-responsive {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
  .video-responsive {
    height: 0;
    padding-bottom: 56.25%;
  }

  .video-responsive iframe,
  .video-responsive object,
  .video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* youtube embed end */

/* Video Embed Full Width Styles */
/* Make all video embeds in post content display in full width */
.post-content iframe[src*="youtube.com"],
.post-content iframe[src*="youtu.be"],
.post-content iframe[src*="vimeo.com"],
.post-content iframe[src*="dailymotion.com"],
.post-content iframe[src*="facebook.com"],
.post-content iframe[src*="instagram.com"],
.post-content iframe[src*="twitter.com"],
.post-content iframe[src*="twitch.tv"],
.post-content iframe[src*="tiktok.com"],
.post-content iframe[src*="dailymotion.com"],
.post-content iframe[src*="player.vimeo.com"],
.post-content iframe[src*="embed"],
.post-content object[type*="video"],
.post-content embed[type*="video"],
.post-content video,
.post-content .wp-video,
.post-content .mejs-container,
.post-content .video-container iframe,
.post-content .video-wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 20px 0 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure video containers are full width */
.post-content .video-container,
.post-content .video-wrapper,
.post-content .wp-block-video,
.post-content .wp-block-embed,
.post-content .wp-block-embed__wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 20px 0 !important;
  overflow: hidden !important;
}

/* Responsive aspect ratio for video embeds */
.post-content iframe[src*="youtube.com"],
.post-content iframe[src*="youtu.be"],
.post-content iframe[src*="vimeo.com"],
.post-content iframe[src*="dailymotion.com"],
.post-content iframe[src*="facebook.com"],
.post-content iframe[src*="instagram.com"],
.post-content iframe[src*="twitter.com"],
.post-content iframe[src*="twitch.tv"],
.post-content iframe[src*="tiktok.com"],
.post-content iframe[src*="player.vimeo.com"],
.post-content iframe[src*="embed"] {
  aspect-ratio: 16/9 !important;
  min-height: 200px !important;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16/9) {

  .post-content iframe[src*="youtube.com"],
  .post-content iframe[src*="youtu.be"],
  .post-content iframe[src*="vimeo.com"],
  .post-content iframe[src*="dailymotion.com"],
  .post-content iframe[src*="facebook.com"],
  .post-content iframe[src*="instagram.com"],
  .post-content iframe[src*="twitter.com"],
  .post-content iframe[src*="twitch.tv"],
  .post-content iframe[src*="tiktok.com"],
  .post-content iframe[src*="player.vimeo.com"],
  .post-content iframe[src*="embed"] {
    height: 0 !important;
    padding-bottom: 56.25% !important;
    /* 16:9 aspect ratio */
    position: relative !important;
  }

  .post-content iframe[src*="youtube.com"],
  .post-content iframe[src*="youtu.be"],
  .post-content iframe[src*="vimeo.com"],
  .post-content iframe[src*="dailymotion.com"],
  .post-content iframe[src*="facebook.com"],
  .post-content iframe[src*="instagram.com"],
  .post-content iframe[src*="twitter.com"],
  .post-content iframe[src*="twitch.tv"],
  .post-content iframe[src*="tiktok.com"],
  .post-content iframe[src*="player.vimeo.com"],
  .post-content iframe[src*="embed"] {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* Override any existing width constraints */
.post-content .wp-block-embed,
.post-content .wp-block-embed__wrapper,
.post-content .wp-block-video {
  max-width: none !important;
  width: 100% !important;
}

/* Ensure video embeds break out of container constraints */
.post-content .wp-block-embed.alignwide,
.post-content .wp-block-embed.alignfull,
.post-content .wp-block-video.alignwide,
.post-content .wp-block-video.alignfull {
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {

  .post-content iframe[src*="youtube.com"],
  .post-content iframe[src*="youtu.be"],
  .post-content iframe[src*="vimeo.com"],
  .post-content iframe[src*="dailymotion.com"],
  .post-content iframe[src*="facebook.com"],
  .post-content iframe[src*="instagram.com"],
  .post-content iframe[src*="twitter.com"],
  .post-content iframe[src*="twitch.tv"],
  .post-content iframe[src*="tiktok.com"],
  .post-content iframe[src*="player.vimeo.com"],
  .post-content iframe[src*="embed"],
  .post-content object[type*="video"],
  .post-content embed[type*="video"],
  .post-content video {
    margin: 15px 0 !important;
    border-radius: 4px !important;
  }

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

/* Additional video embed styles for better compatibility */
/* Handle any video embed that might be wrapped in divs */
.post-content div[class*="video"] iframe,
.post-content div[class*="embed"] iframe,
.post-content div[class*="player"] iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Handle Gutenberg video blocks */
.post-content .wp-block-video video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Handle any custom video containers */
.post-content [class*="video-"] {
  width: 100% !important;
  max-width: 100% !important;
}

/* Ensure video embeds work in all content areas, not just post-content */
.entry-content iframe[src*="youtube.com"],
.entry-content iframe[src*="youtu.be"],
.entry-content iframe[src*="vimeo.com"],
.entry-content iframe[src*="dailymotion.com"],
.entry-content iframe[src*="facebook.com"],
.entry-content iframe[src*="instagram.com"],
.entry-content iframe[src*="twitter.com"],
.entry-content iframe[src*="twitch.tv"],
.entry-content iframe[src*="tiktok.com"],
.entry-content iframe[src*="player.vimeo.com"],
.entry-content iframe[src*="embed"],
.entry-content object[type*="video"],
.entry-content embed[type*="video"],
.entry-content video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 20px 0 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Video Embed Full Width Styles End */



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

.btn {
  background-color: #ca0d0d;
  /* Orange 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: #008dc9;
  /* 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;
}

/* Orange line exactly text width */
.p6-cat-module-yellow-line {
  height: 4px;
  background-color: #ca0d0d;
  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: #008dc9;
  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: #ca0d0d;
}

/* 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: #008dc9;
  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: #ca0d0d;
  border-color: #ca0d0d;
  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: #1e4785;
    /* 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;
  }
}






/* Mobile margin-top for single post container */
@media (max-width: 768px) {
  .sureng-mobile {
    margin-top: 100px !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 category module start*/
/* category */
.protech-cat-5_header-category {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #008dc9;
  font-weight: bold;
  position: relative;
  padding: 4px 0;
  margin: 8px 0;
  background: linear-gradient(135deg, rgba(26, 46, 70, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
  border-radius: 8px;
  border-left: 4px solid #008dc9;
  padding-left: 20px;
  box-shadow: 0 2px 10px rgba(26, 46, 70, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.protech-cat-5_header-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 46, 70, 0.02) 0%, rgba(255, 102, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Category Header – Redesign */
.simple-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 8px 14px;
  margin: 8px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
  overflow: visible;
}

.simple-category-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0;
  background: linear-gradient(180deg, #008dc9 0%, #ca0d0d 100%);
}

.simple-category-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.15) 0%, rgba(26, 46, 70, 0.15) 100%);
}

.simple-category-header:hover {
  transform: none;
}

.simple-category-header .category-label {
  font-family: "Teko", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.4px;
  margin: 0;
  color: #008dc9;
  /* fallback for older browsers */
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
  margin-bottom: -5px;
}

.simple-category-header .category-label .first-word {
  color: #ca0d0d;
  margin-right: 8px;
  font-family: "Teko", sans-serif;
}

.simple-category-header .category-label .second-word {
  color: #008dc9;
  font-family: "Teko", sans-serif;
}

/* Modifier: force solid color title (overrides gradient text) */
.simple-category-header .category-label.category-label--white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

/* Hide legacy decorative elements used by old design */
.simple-category-header .indicator-dot,
.simple-category-header .separator-line {
  display: none;
}

/* View all button aligned to the right */
.simple-category-header .view-all-btn {
  margin-left: auto;
  background: transparent;
  color: #ca0d0d;
  border: 1px solid rgba(255, 102, 0, 0.35);
  padding: 6px 12px;
  border-radius: 9999px;
  font-family: 'khand', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.simple-category-header .view-all-btn:hover {
  background: #ca0d0d;
  color: #ffffff;
  border-color: #ca0d0d;
  transform: translateY(-1px);
}

.simple-category-header .view-all-btn:active {
  transform: translateY(0);
}

/* Responsive design for simple category header */
@media (max-width: 768px) {
  .simple-category-header {
    padding: 8px 0 6px 12px;
  }

  .simple-category-header::before {
    left: 0;
    top: 0;
    bottom: 0;
  }

  .simple-category-header::after {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .simple-category-header .category-label {
    font-size: 28px;
  }

  .simple-category-header .view-all-btn {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .simple-category-header {
    padding: 8px 0 6px 10px;
    gap: 8px;
  }

  .simple-category-header .category-label {
    font-size: 24px;
  }

  .simple-category-header .view-all-btn {
    font-size: 13px;
    padding: 5px 10px;
  }
}



.protech-cat-5_header-category .protech-cat-5_user-avatar {
  font-size: 27px;
  margin-right: 12px;
  color: #008dc9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(26, 46, 70, 0.2));
}

.protech-cat-5_header-category .protech-cat-5_text {
  display: inline-block;
  color: #008dc9;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(26, 46, 70, 0.1);
  letter-spacing: 0.5px;
  font-weight: 700;
  flex: 1;
  font-size: 30px;
  font-family: 'khand', sans-serif;

}

.protech-cat-5_header-category .protech-cat-5_view-all-link {
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.protech-cat-5_header-category .protech-cat-5_view-all-link a {
  color: #ca0d0d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(26, 46, 70, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'khand', sans-serif;
}

.protech-cat-5_header-category .protech-cat-5_view-all-link a:hover {
  background: rgba(26, 46, 70, 0.2);
  color: #008dc9;
}




/* Add subtle animation on load */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.protech-cat-5_header-category {
  animation: slideInFromLeft 0.6s ease-out;
}

/* Add pulse effect to avatar */
@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.protech-cat-5_header-category .protech-cat-5_user-avatar {
  animation: subtlePulse 3s ease-in-out infinite;
}



/* Responsive design */
@media (max-width: 768px) {
  .protech-cat-5_header-category {
    font-size: 20px;
    padding: 6px 0;
    padding-left: 15px;
    margin: 10px 0;
    border-radius: 6px;
    border-left: 3px solid #008dc9;
  }

  .protech-cat-5_header-category .protech-cat-5_user-avatar {
    font-size: 24px;
    margin-right: 12px;
  }

  .protech-cat-5_header-category .protech-cat-5_text {
    font-size: 22px;
  }

  .protech-cat-5_header-category .protech-cat-5_decoration-line {
    left: 15px;
  }

  .protech-cat-5_header-category .protech-cat-5_view-all-link a {
    font-size: 16px;
    padding: 3px 8px;
  }


}

@media (max-width: 480px) {
  .protech-cat-5_header-category {
    font-size: 18px;
    padding: 5px 0;
    padding-left: 12px;
    margin: 8px 0;
    border-radius: 5px;
    border-left: 2px solid #008dc9;
  }

  .protech-cat-5_header-category .protech-cat-5_user-avatar {
    font-size: 22px;
    margin-right: 10px;
  }

  .protech-cat-5_header-category .protech-cat-5_text {
    font-size: 20px;
  }

  .protech-cat-5_header-category .protech-cat-5_decoration-line {
    left: 12px;
  }

  .protech-cat-5_header-category .protech-cat-5_view-all-link a {
    font-size: 14px;
    padding: 2px 6px;
  }


}

/* end category */

/* Section Title Styling */
.ngo_section-title {
  text-align: center;
  margin: 40px 0 50px 0;
  padding: 0 20px;
}

.ngo_title-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.ngo_main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ngo_fadeInUp 0.8s ease-out;
}

.ngo_main-title a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.ngo_main-title a:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.ngo_title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto 20px auto;
  border-radius: 2px;
  position: relative;
  animation: ngo_slideIn 1s ease-out 0.3s both;
}

.ngo_title-underline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.ngo_title-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  animation: ngo_fadeInUp 0.8s ease-out 0.6s both;
}

/* Animations */
@keyframes ngo_fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ngo_slideIn {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ngo_main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .ngo_title-subtitle {
    font-size: 1rem;
  }

  .ngo_section-title {
    margin: 30px 0 40px 0;
  }
}

@media (max-width: 480px) {
  .ngo_main-title {
    font-size: 1.8rem;
  }
}


/* new category module end*/


/* new header for realted news */

/* Simple header for related news */
.related-news-header {
  margin-bottom: 20px;
}

.related-news-header h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  padding: 0;
}

.related-news-header::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  margin-top: 10px;
}


/* new header for realted news end */



/* new header */

.notice-header {
  background-color: #d9efff;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  border-bottom: 5px solid #034d7e;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-header a {
  color: inherit;
  text-decoration: none;
}

.view-all-link {
  font-size: 14px;
  font-weight: 600;
  background: #0175c0;
  padding: 5px 12px;
  border-radius: 4px;
  color: #fff !important;
  font-family: 'Mukta', sans-serif;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: #034d7e;
}

@media (max-width: 768px) {
  .notice-header {
    font-size: 18px;
    padding: 8px 12px;
    border-bottom: 3px solid #034d7e;
  }

  .view-all-link {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* new header for realted news end */