/* Technology Center Page Styles */

/* Page Layout */
header.bg .btn{
  border: 1px solid var(--primary);
}
.full_content{
  max-width: 192rem;
}
.tech_page {
  padding-bottom: 0;
  
  min-height: 100vh;
}

.tech_layout {
  gap: 0;
}

/* Sidebar Styles */
.tech_sidebar {
  width: 33.578%;
  position: relative;
  padding-left: 4rem;
  padding-right: 4rem;
  background: url('../img/list_left_bg.jpg') no-repeat top/cover;
}
.sidebar_close,
.sidebar_overlay,
.btn_filter {
  display: none;
}

.sidebar_content {
  position: relative;
  z-index: 1;
  padding-top: 42rem;
}

/* Filter Box Styles */
.filter_box {
  background: white;
  border-radius: 1rem;
  padding: 3.3rem 3.8rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.filter_header {
  margin-bottom: 4rem;
}

.filter_header h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--title);
}

.clear_filters {
  font-size: 1.5rem;
  color: #606060;
  font-weight: 450;
  transition: color 0.3s;
  cursor: pointer;
}

.clear_filters:hover {
  color: var(--primary);
}

/* Checkbox Styles */
.filter_list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.checkbox_label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
}

.checkbox_label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #989898;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: white;
}

.checkmark::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url('../img/checked.svg') no-repeat center/cover;
  border-radius: 0.1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.checkbox_label input[type="checkbox"]:checked + .checkmark {
  border-color: var(--secondary);
}

.checkbox_label input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.label_text {
  font-size: 2rem;
  color: #666666;
  font-weight: 350;
}

/* Sidebar Link Styles */
.sidebar_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  color: var(--title);
}

.sidebar_link span {
  font-size: 1.8rem;
  font-weight: 600;
}

.sidebar_link svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s;
}

.sidebar_link:hover {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar_link:hover svg {
  transform: translateX(5px);
}

/* Main Content Styles */
.tech_main {
  flex: 1;
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 5.2rem;
  padding-right: 2.5rem;
  background-color: #F4F5F7;
}

/* Breadcrumb Styles */
.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb ul {
  gap: 0.8rem;
}

.breadcrumb li {
  font-size: 1.4rem;
  color: var(--text);
}

.breadcrumb a {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.breadcrumb .home_icon {
  color: var(--primary);
}

.breadcrumb .separator svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Page Title */
.page_title {
  font-size: 4.6rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--title);
  margin-top: 6.5rem;
}

/* Search Box */
.search_box {
  display: flex;
  margin-bottom: 4rem;
  border-radius: 0.8rem;
  overflow: hidden;
  background: white;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search_box input {
  flex: 1;
  padding: 2.4rem 3rem;
  font-size: 1.9rem;
  border: none;
  background: white;
  color: var(--title);
  font-weight: 350;
}

.search_box input::placeholder {
  color: #999;
}

.search_btn {
  width: 10.2rem;
  height: 6rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: #00264C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-radius: 8px;
}

.search_btn:hover {
  background: #757474;
}

.search_btn svg {
  stroke: black;
}

/* Resource Grid */
.resource_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7rem;
  margin-bottom: 2.2rem;
  margin-top: 3.8rem;
  padding-top: 7.4rem;
  border-top: 1px solid rgba(22, 22, 22, 0.14);
}

/* Resource Card */
.resource_card {
  background: white;
  border-radius: 1rem;
  padding: 0em;
  padding-top: 4.6rem;
  padding-bottom: 3rem;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.resource_card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card_header {
  padding-left: 4rem;
  padding-right: 3rem;
  position: relative;
  z-index: 9;
}

.category_tag {
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 400;
}

.category_tag.domestic,
.category_tag.foreign {
  color: var(--secondary);
}

.resource_grid .category_tag{
  font-size: 1.6rem;
}

.type_icon {
  width: 10.2rem;
  height: 10.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00264B;
}

.resource_grid .type_icon{
  width: 9.3rem;
  height: 9.3rem;
} 

.type_icon img {
  width: 50%;
  height: 50%;
}

.card_title {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin-bottom: 4rem;
  color: var(--title);
}

.resource_grid .card_title{
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 3rem;
}
.resource_grid .btn_learn_more{
  font-size: 1.5rem;
  padding: 1.3rem 2rem;
  gap: 2.4rem;
  background-color: transparent;
  color: #001c3d;
  border: 1px solid #001c3d;
}
.resource_grid .btn_learn_more img{
  filter: contrast(0) brightness(0);
}
.resource_grid .resource_card:hover .btn_learn_more{
  background-color: #00264B;
  color: white;
}
.resource_grid .resource_card:hover .btn_learn_more img{
  filter: brightness(1);
}
.resource_card .info{
  padding: 2.3rem 3.3rem;
  max-width: calc(100% - 4rem);
  background-color: #F9F9FB;
  margin-top: -2.2rem;
  z-index: 0;
  position: relative;
  margin-bottom: 7rem;
}

.resource_grid .resource_card .info{
  margin-bottom: 6rem;
}
.type_label {
  font-size: 1.6rem;
  color: #0e202a;
  margin-bottom: 0;
  display: block;
  font-weight: 450;
}
.resource_grid .type_label{
  font-size: 1.5rem;
}

/* Learn More Button */
.btn_learn_more {
  display: inline-flex;
  align-items: center;
  gap: 2.7rem;
  padding: 1.4rem 2rem;
  background: #00264B;
  color: white;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  margin-top: auto;
  width: fit-content;
  margin-left: 3.5rem;
}
html[lang='ar'] .single-post .btn_learn_more{
  margin-right: 3.5rem;
}
html[lang='ar'] .tag{
  word-break: break-all;
}
.btn_learn_more img {
  width: 1.7rem;
  height: 1.7rem;
  transition: transform 0.3s;
}

.btn_learn_more:hover {
  background: var(--secondary);
}

.btn_learn_more:hover svg {
  transform: translateX(3px);
}

.btn_learn_more.outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn_learn_more.outline svg path {
  stroke: var(--primary);
}

.btn_learn_more.outline:hover {
  background: var(--primary);
  color: white;
}

.btn_learn_more.outline:hover svg path {
  stroke: white;
}

/* Results Count */
.results_count {
  font-size: 1.5rem;
  color: #606060;
  margin-bottom: 4rem;

}

/* Pagination */
.pagination_wrap {
  display: flex;
  justify-content: center;
}

.pagination {
  gap: 1.1rem;
  align-items: center;
}

.pagination li a, .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  height: 4.2rem;
  padding: 0 1rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}
.pagination li.dots span{
  border: none;
}

.pagination li a:hover,
.pagination li.active a {
  color: white;
  font-weight: 500;
  border-color: #00264B;
  background-color: #00264B;
}

.pagination li.dots span {
  color: #999;
}

.pagination li.prev a,
.pagination li.next a {
  padding: 0 0.5rem;
}

.pagination li.prev svg,
.pagination li.next svg {
  width: 2rem;
  height: 2rem;
}


.tech_detail_banner {
  position: relative;
}
.tech_detail_banner .banner_content{
  padding: 0;
  min-height: 33rem;
  display: flex;
  flex-direction: column;
  padding: 11.3rem 0 3.5rem;
}
.tech_detail_banner.detail_banner .banner_content{
  max-width: 122rem;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  height: 33rem;
}
.tech_detail_banner.detail_banner .banner_content{
  padding: 0;
}
.detail_banner.tech_detail_banner .info{
  margin-top: 0;
  margin-bottom: 3.6rem;
}
.detail_banner.tech_detail_banner h1{
  margin-top: 7.5rem;
  margin-bottom: 0;
}
.tech_detail_banner .img_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tech_detail_banner .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech_detail_banner.faq_banner .banner_content {
  max-width: 90rem;
}

.tech_detail_banner h1 {
  font-size: 5rem;
  font-weight: 350;
  color: white;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* Detail Page Breadcrumb */
.tech_detail_banner .info {
  margin-bottom: 0;
  margin-top: auto;
  color: white;
}
.tech_detail_banner .info .page_name{
  font-size: 1.7rem;
  font-weight: 400;
  margin-right: 4.5rem;
  display: flex;
  align-items: center;
  display: none;
}
.tech_detail_banner .info .page_name:before{
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
  margin-right: 1rem;
  background: url('../img/page_icon.svg') no-repeat center/contain;
}
.breadcrumbs>span{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
}
.breadcrumbs span > span:nth-of-type(1) a{
  width: 3.6rem;
  height: 3.6rem;
  display: inline-block;
  text-indent: -99999px;
  background: url('../img/home_icon_blue.svg') no-repeat center/contain;
}
.tech_main .breadcrumbs span > span:nth-of-type(1) a{
  background-image: url('../img/home_icon_blue.svg');
}
.tech_main .breadcrumbs span > span:after{
  filter: brightness(0.5);
}
.breadcrumbs span > span{
  display: flex;
  align-items: center;
}
.breadcrumbs span > span:after{
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url('../img/bread_icon.svg') no-repeat center/contain;
  display: inline-block;
  margin-left: 1.1rem;
}
.breadcrumbs span > span:last-of-type:after{
  display: none;
}
.breadcrumbs span > span a{
  color: rgba(255, 255, 255, 0.74);
  transition: all 0.3s;
}
.breadcrumbs span > span a:hover{
  color: var(--secondary);
}

.tech_detail_banner .breadcrumb ul {
  gap: 1rem;
  flex-wrap: wrap;
}

.tech_detail_banner .breadcrumb li {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.tech_detail_banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.tech_detail_banner .breadcrumb a:hover {
  color: white;
}

.tech_detail_banner .breadcrumb .separator svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* Detail Page Layout */
.tech_detail_page {
  padding: 8rem 0 14rem;
  background: white;
}

.tech_detail_layout {
  gap: 10.8rem;
  align-items: flex-start;
}

/* Detail Sidebar */
.tech_detail_sidebar {
  width: 28.8rem;
  min-width: 28.8rem;
  position: sticky;
  top: 12rem;
}

/* Phase Navigation */
.phase_nav {
  margin-bottom: 5.5rem;
}

.phase_nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.phase_link {
  display: block;
  padding: 1.6rem 2rem;
  background: white;
  border: 1px solid #cecece;
  color: #242424;
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.3s;
  text-align: center;
  border-radius: 0;
}

.phase_link:hover,
.phase_link.active,
.phase_nav li.active .phase_link {
  background: #00264B;
  color: white;
  border-color: #00264B;
}

/* Cooperate Box */
.cooperate_box {
  margin-bottom: 5.7rem;
}

.cooperate_box h3 {
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--title);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #cccccc;
}

.cooperate_box .divider {
  width: 5.4rem;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 2.8rem;
  margin-top: -1px;
}

.cooperate_box p {
  font-size: 1.8rem;
  color: var(--text);
  line-height: 2.8rem;
  font-weight: 360;
  margin-bottom: 2rem;
}
.cooperate_box .btn.btn_arrow.blue{
  line-height: 1.8;
  font-weight: 350;
  max-width: 24rem;
  min-width: unset;
  background-color: #00264B;
}
.cooperate_box .btn.btn_arrow.blue:hover{
  background-color: var(--secondary);
}

.btn_chat_sales {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 4rem;
  background: var(--primary);
  color: white;
  font-size: 1.8rem;
  font-weight: 350;
  transition: all 0.3s;
}

.btn_chat_sales:hover {
  background: var(--secondary);
}

.btn_chat_sales svg {
  width: 1.6rem;
  height: 1.6rem;
}

/* Tags Box */
.tags_box h3 {
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--title);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #cccccc;
}

.tags_box .divider {
  width: 5.4rem;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 2.8rem;
  margin-top: -1px;
}

.tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: #E7E7E7;
  color: #242424;
  font-size: 1.7rem;
  font-weight: 400;
  border-radius: 0.3rem;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary);
  color: white;
}

/* Share Box (inline, inside sidebar below tags) */
.share_box {
  margin-top: 3rem;
}
.share_box h3 {
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--title);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #cccccc;
}
.share_box .divider {
  width: 5.4rem;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 2.8rem;
  margin-top: -1px;
}
.share_btns_row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Detail Main Content */
.tech_detail_main {
  width: 74.33333%;
  position: relative;
}

/* Share Buttons */
.share_buttons {
  position: unset;
  left: 8.5rem;
  top: 50%;
  transform: translateY(0%);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-flow: wrap;
  /* opacity: 0; */
  /* visibility: hidden; */
  transition: opacity 0.3s, visibility 0.3s;
}
.share_buttons > span{
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.share_buttons.visible {
  opacity: 1;
  visibility: visible;
}

.share_buttons span {
  font-size: 2.2rem;
  color: #242424;
  font-weight: 500;
}

.share_btn {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E7E7E7;
  color: white;
  transition: all 0.3s;
  text-indent: -99999px;
  position: relative;
}
.share_btn:after{
  content: "";
  width: 45%;
  height: 45%;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: url('../img/facebook.svg') no-repeat center/contain;
  filter: brightness(0);
}
.share_btn.twitter:after {
  background-image: url('../img/twitter.svg');
  background-size: 80%;
}
.share_btn.linkedin:after {
  background-image: url('../img/linkedin.svg');
  background-size: 80%;
}

.share_btn:hover {
  background: #00264B;
  transform: translateY(-2px);
}
.share_btn:hover:after{
  filter: brightness(1);
}
.share_btn svg {
  width: 2rem;
  height: 2rem;
}

/* Phase Section */
.phase_section {
  margin-bottom: 5rem;
  padding-right: 0;
}

.phase_section h2 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #232323;
  line-height: 4.8rem;
  margin-bottom: 1rem;
}

.phase_section p {
  font-size: 2rem;
  color: #3d3d3d;
  line-height: 3.3rem;
  margin-bottom: 1.5rem;
  font-weight: 350;
}

.phase_section img{
  margin: 2rem 0;
  width: 100%;
  height: auto;
}

.phase_section img + h2{
  margin-top: 1rem;
}

/* Process Diagram */
.process_diagram {
  margin: 4rem 0;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 1rem;
}

.diagram_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagram_node {
  display: flex;
  justify-content: center;
}

.node_box {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-align: center;
  max-width: 22rem;
}

.node_box.small {
  padding: 1.2rem 1.8rem;
  font-size: 1.2rem;
  max-width: 15rem;
}

.node_box.large {
  padding: 1.8rem 3rem;
  font-size: 1.3rem;
  max-width: 35rem;
}

.diagram_row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.diagram_row.row_2 {
  gap: 1.5rem;
}

.diagram_row.row_3 {
  gap: 1rem;
}

/* Connector Lines */
.diagram_connectors {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 3rem;
}

.connector_line {
  position: absolute;
  width: 0.2rem;
  height: 3rem;
  background: #ccc;
}

.connector_line.left {
  left: 25%;
}

.connector_line.center {
  left: 50%;
}

.connector_line.right {
  right: 25%;
}

/* Phase Image */
.phase_image {
  margin-top: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}

.phase_image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Navigation */
.post_navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.4rem;
  border-top: 1px solid #bcbcbc;
  margin-top: 7.6rem;
}

.nav_prev,
.nav_next {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  max-width: 40%;
  padding-left: 2.9rem;
  position: relative;
}
.nav_prev:before{
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url('../img/post_prev.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav_next{
  margin-left: auto;
}
.nav_next:before{
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url('../img/post_next.svg') no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav_next {
  text-align: right;
  align-items: flex-end;
  padding-right: 2.9rem;
  padding-left: 0;
}

.nav_label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: rgba(35, 35, 35, 0.85);
}

.nav_next .nav_label {
  flex-direction: row-reverse;
}

.nav_title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--title);
  line-height: 1.4;
}

/* Related Resources Section */
.related_resources {
  padding: 7rem 0 9rem;
  background: #F4F5F7;
}

.related_resources h2{
  margin-bottom: 5rem;
}

/* Resources Grid */
.resources_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.resources_grid .resource_card {
  background: white;
  border-radius: 1rem;
  padding: 5rem 0 3.5rem;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.resources_grid .resource_card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Learn More Solutions Section */
.learn_more_solutions {
  padding: 8.6rem 0 10rem;
  background: white;
  overflow: hidden;
}
.learn_more_solutions h2{
  margin-bottom: 5rem;
}

.solutions_slider_wrap {
  position: relative;
}
.swiper_solutions {
  overflow: hidden;
}

.solution_card {
  display: block;
}

.solution_card .img {
  aspect-ratio: 333/307;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 3.5rem;
}


.solution_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.solution_card:hover .img img {
  transform: scale(1.05);
}

.solution_card h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--title);
  margin-bottom: 2rem;
}

.learn_more_solutions .swiper_btns.middle{
  max-width: 174.4rem;
  width: 122%;
}
.learn_more_solutions .swiper_btns.middle div{
  border-radius: 0;
  width: 6.3rem;
  height: 6.3rem;
  background-color: #00264B;
}
.learn_more_solutions .swiper_btns.middle div:after{
  background-image: url('../img/swiper_arrow_right.svg');
}
.learn_more_solutions .swiper_btns.middle div:hover:after{
  filter: contrast(0) brightness(100);
}
.learn_more_solutions .swiper_btns.middle div:hover{
  filter: brightness(120%);
}
.discover_link {
  font-size: 1.8rem;
  color: #000000;
  
  transition: color 0.3s;
  padding-bottom: 0.5rem;
  display: inline-block;
  border-bottom: 1px solid #000000;
}

.solution_card:hover .discover_link {
  color: var(--secondary);
}

/* Slider Navigation */
.slider_nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.nav_prev_btn,
.nav_next_btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: all;
}

.nav_prev_btn:hover,
.nav_next_btn:hover {
  background: var(--primary);
  color: white;
}

.nav_prev_btn svg,
.nav_next_btn svg {
  width: 2rem;
  height: 2rem;
}

/* Responsive Styles for Detail Page */
@media (max-width: 1400px) {
  .resources_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .tech_detail_layout {
    flex-direction: column;
  }
  
  .tech_detail_sidebar {
    width: 100%;
    min-width: 100%;
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .phase_nav,
  .cooperate_box,
  .tags_box {
    margin-bottom: 0;
  }
  
  .phase_nav ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .phase_link {
    white-space: nowrap;
  }
  
  
  .phase_section {
    padding-right: 0;
  }

  .tech_detail_main{
    width: 100%;
  }
}

@media (max-width: 992px) {
  .tech_detail_banner h1 {
    font-size: 2.8rem;
  }
  
  .tech_detail_sidebar {
    grid-template-columns: 1fr;
  }
  
  .diagram_row {
    flex-wrap: wrap;
  }
  
  .node_box {
    max-width: 18rem;
  }
}

/* ===============================
   FAQ PAGE SPECIFIC STYLES
   =============================== */

/* FAQ Category Section */
.faq_category_section {
  margin-bottom: 6rem;
}

.faq_category_section h2 {
  font-size: 3.2rem;
  font-weight: 400;
  margin-top: -1rem;
  color: var(--title);
  margin-bottom: 1.5rem;
}

.category_intro {
  font-size: 2rem;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 3.3rem;
  margin-bottom: 3.3rem;
}

/* FAQ Accordion */
.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.faq_item {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  background: white;
  padding: 0 3rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.faq_question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.3rem 0 2.3rem;
  background: white;
  cursor: pointer;
  border: none;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--title);
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 6, 22, 0);
}

.active .faq_question{
  border-bottom: 1px solid rgba(0, 6, 22, 0.18);
  padding: 3.2rem 0 1.4rem;
}

.faq_icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq_icon svg {
  width: 100%;
  height: 100%;
}

.faq_item.active .faq_icon {
  transform: rotate(0deg);
  color: var(--title);
}

.faq_item.active .faq_icon svg path {
  d: path("M5 12H19");
}

.faq_answer {
  display: none;
  padding: 2rem 0 2.5rem;
}

.faq_answer p {
  font-size: 1.8rem;
  color: #474747;
  line-height: 2.8rem;
  max-width: 87.3rem;
}

/* FAQ Pagination */
.faq_pagination {
  margin-top: 9rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

.faq_pagination .pagination_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.4rem;
}

.page_info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #161616;

}

.page_input_wrap {
  width: 6rem;
}

.page_input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--title);
}

.page_input:focus {
  border-color: var(--primary);
}

/* Responsive for FAQ page */
@media (max-width: 768px) {
  .resources_grid {
    grid-template-columns: 1fr;
  }

  .faq_category_section {
    padding-right: 0;
  }

  .faq_question {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }

  .faq_answer {
    padding: 0 2rem 1.5rem;
  }

  .faq_pagination .pagination_wrap {
    flex-direction: column;
    align-items: center;
  }

  .page_info {
    order: -1;
  }
  
  .solutions_slider_wrap {
    padding: 0 4rem;
  }
  
  .phase_nav ul {
    flex-direction: column;
  }
  
  .post_navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav_prev,
  .nav_next {
    max-width: 100%;
  }
  
  .nav_next {
    align-items: flex-start;
    text-align: left;
  }
  
  .nav_next .nav_label {
    flex-direction: row;
  }
}

@media (max-width: 1400px) {
  .resource_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 1200px) {
  .sidebar_bg {
    display: none;
  }
  
  .tech_page {
    background: #F6F6F6;
    padding-top: 50px;
  }
  
  .tech_layout {
    flex-direction: column;
  }
  
  .tech_sidebar {
    width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
    padding: 30px;
  }
  
  .sidebar_content {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .tech_main {
    padding-left: 0;
  }
  
  .sidebar_link {
    margin-bottom: 0;
  }
  
  .filter_box {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .resource_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sidebar_content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .resource_grid {
    grid-template-columns: 1fr;
  }
  
  .tech_main {
    padding-top: 2rem;
  }
  
  .page_title {
    font-size: 3.2rem;
  }
  
  .pagination li a,
  .pagination li span {
    min-width: 3rem;
    height: 3rem;
    font-size: 1.3rem;
    padding: 0 0.8rem;
  }

  .tech_detail_banner .banner_content{
    /* padding: 40px 0; */
    padding: 140px 0 40px;
    min-height: unset;
  }
  .tech_detail_banner .info{
    margin-top: 20px;
    flex-flow: wrap;
  }
  .tech_detail_banner .info .page_name{
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  .breadcrumbs>span{
    font-size: 14px;
  }
  .tech_detail_banner .info .page_name:before{
    width: 15px;
    height: 15px;
  }
  .breadcrumbs span > span:nth-of-type(1) a{
    width: 25px;
    height: 25px;
  }
  .tech_detail_page{
    padding: 50px 0;
  }
  .phase_link{
    font-size: 14px;
    padding: 8px 20px;
  }
  .cooperate_box h3, .tags_box h3{
    font-size: 18px;
  }
  .cooperate_box .divider, .tags_box .divider{
    margin-bottom: 10px;
  }
  .cooperate_box p{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .tags_box .divider{
    margin-bottom: 20px;
  }
  .tag{
    padding: 8px 10px;
    font-size: 15px;
  }
  .tech_detail_layout{
    gap: 30px;
  }

  .share_buttons{
    right: 20px;
  }
  .share_buttons span{
    font-size: 14px;
  }
  .share_btn{
    width: 35px;
    height: 35px;
  }
  .faq_category_section h2{
    font-size: 20px;
  }
  .category_intro{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .faq_item{
    padding: 0 20px;
  }
  .faq_question{
    padding: 15px 0;
    font-size: 15px;
  }
  .faq_answer p{
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
  }
  .faq_answer{
    padding: 20px 0;
  }
  .active .faq_question{
    padding: 20px 0;
  }
  .faq_accordion{
    gap: 15px;
  }
  .faq_pagination{
    margin-top: 20px;
  }
  .page_info{
    font-size: 14px;
  }
  .related_resources{
    padding: 40px 0;
  }
  .related_resources h2{
    margin-bottom: 20px;
  }
  .resources_grid .resource_card{
    padding: 20px 0;
  }
  .card_header{
    padding: 0 20px;
  }
  .category_tag{
    font-size: 14px;
  }
  .type_icon{
    width: 60px;
    height: 60px;
  }
  .resource_card .info{
    padding: 20px;
    margin-top: -10px;
    margin-bottom: 20px;
  }
  .card_title{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .btn_learn_more{
    padding: 8px 20px;
    font-size: 14px;
    margin-left: 20px;
    gap: 10px;
  }
  .learn_more_solutions{
    padding: 40px 0;
  }
  .learn_more_solutions h2{
    margin-bottom: 20px;
  }
  .solutions_slider_wrap{
    padding: 0;
  }
  .solution_card .img{
    aspect-ratio: 1/0.7;
    margin-bottom: 10px;
  }
  .solution_card h3{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .discover_link{
    font-size: 15px;
  }
  .learn_more_solutions .swiper_btns.middle div{
    width: 40px;
    height: 40px;
  }
  .learn_more_solutions .swiper_btns.middle{
    width: 100%;
  }
  .detail_banner.tech_detail_banner h1{
    margin-top: 20px;
  }
  .btn_chat_sales{
    padding: 10px 15px;
    font-size: 14px;
  }
  .phase_section h2{
    font-size: 20px;
    line-height: 1.5;
  }
  .phase_section p{
    font-size: 14px;
    line-height: 1.5;
  }
  .phase_section img{
    display: block;
    width: 100%;
    height: auto;
  }
  .post_navigation{
    margin-top: 15px;
  }
  .nav_prev:before, .nav_next:before{
    width: 15px;
    height: 15px;
  }
  .nav_title{
    font-size: 17px;
  }
  .full_content{
    padding: 0;
  }
  .tech_sidebar{
    padding: 40px 20px;
  }
  .filter_box{
    padding: 20px;
  }
  .filter_header h3{
    font-size: 18px;
  }
  .clear_filters{
    font-size: 14px;
  }
  .filter_header{
    margin-bottom: 20px;
  }
  .label_text{
    font-size: 15px;
  }
  .checkbox_label{
    gap: 10px;
  }
  .sidebar_link{
    padding: 10px 20px;
    
  }
  .sidebar_link span{
    font-size: 15px;
  }
  .tech_main{
    padding: 0;
  }
  .page_title{
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .search_box input{
    font-size: 15px;
    padding: 10px 20px;
  }
  .search_btn{
    height: calc(100% - 10px);
    width: 60px;
  }
  .search_btn svg{
    width: 15px;
    height: 15px;
  }
  .resource_grid{
    margin-top: 0;
    padding-top: 20px;
  }
  .resource_card{
    padding: 20px 0;
  }
  .resource_grid .type_icon{
    width: 60px;
    height: 60px;
  }
  .resource_grid .category_tag{
    font-size: 14px;
  }
  .resource_grid .card_title{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .resource_grid .resource_card .info{
    margin-bottom: 20px;
  }
  .resource_grid .btn_learn_more{
    padding: 8px 20px;
    font-size: 14px;
    margin-left: 20px;
    gap: 10px;
  }
  .pagination{
    flex-flow: wrap;
  }
}

/* Loading Overlay */
.resource_grid_wrap {
  position: relative;
}
.resource_grid_wrap .loading_overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.resource_grid_wrap.is_loading .loading_overlay {
  opacity: 1;
  pointer-events: auto;
}
.loading_spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid #e5e7eb;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: tech_spin .7s linear infinite;
}
@keyframes tech_spin {
  to { transform: rotate(360deg); }
}

/* Mobile sidebar drawer */
@media (max-width: 768px) {
  .btn_filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn_filter::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cline x1='4' y1='6' x2='20' y2='6'/%3E%3Cline x1='4' y1='12' x2='16' y2='12'/%3E%3Cline x1='4' y1='18' x2='12' y2='18'/%3E%3C/svg%3E") no-repeat center/contain;
  }
  .title_row {
    gap: 12px;
  }
  .title_row .page_title {
    margin-bottom: 0;
  }
  .tech_sidebar {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    z-index: 1000;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
    margin-bottom: 0;
    box-shadow: none;
    opacity: 1 !important;
  }
  .tech_sidebar.open {
    transform: translateX(0) !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }
  .sidebar_overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .sidebar_overlay.open {
    display: block;
  }
  .sidebar_close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    cursor: pointer;
  }
  .sidebar_close::after {
    content: '✕';
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .sidebar_close:hover::after {
    background: #f0f0f0;
  }
  .sidebar_content {
    grid-template-columns: 1fr;
  }

  .tech_detail_banner.detail_banner .banner_content{
    justify-content: flex-end;
  }
  .breadcrumbs>span{
    flex-flow: wrap;
  }
}
