/*----------------------------------------*/
/*  CSS Variables - Following Template Pattern
/*----------------------------------------*/
:root {
  /* Font Families - Matching template */
  --review-ff-heading: 'Inter', sans-serif;
  --review-ff-body: 'Inter', sans-serif;
  
  /* Global Primary Color System */
  --primary-color: #8A7F5A;
  --primary-color-dark: #706B52;
  --primary-color-light: #9B9069;
  --primary-color-lighter: #B5AD8E;
  
  /* Colors - Updated with new primary color */
  --review-color-white: #FFFFFF;
  --review-color-black: #0A0A0A;
  --review-color-black-2: #1E1E1E;
  --review-color-text-body: #6D6868;
  --review-color-orange: #556b2f;
  --review-color-orange-dark: #706B52;
  --review-color-grey-light: #F6F7F9;
  --review-color-border: #EAEBED;
  --review-color-star: #FFB800;
  --review-color-star-inactive: #E4E4E4;
  
  /* Spacing and sizing */
  --review-card-width: 380px;
  --review-card-min-height: 320px;
  --review-card-gap: 24px;
    /* --review-card-width: 320px;
  --review-card-min-height: 280px;
  --review-card-gap: 20px; */
  --review-border-radius: 14px;
  --review-transition: all 0.3s ease-out;
  
  /* Logo slider specific variables */
  --logo-ff-heading: 'Inter', sans-serif;
  --logo-ff-body: 'Inter', sans-serif;
  --logo-color-white: #FFFFFF;
  --logo-color-black: #0A0A0A;
  --logo-color-black-2: #2A2A2A;
  --logo-color-black-3: #1A1A1A;
  --logo-color-text-body: #6D6868;
  --logo-color-orange: #8A7F5A;
  --logo-color-orange-dark: #706B52;
  --logo-color-grey-light: #F6F7F9;
  --logo-color-grey-dark: #2F2F2F;
  --logo-color-border: #EAEBED;
  --logo-color-border-dark: #404040;
  --logo-color-card-bg: #FFFFFF;
  --logo-item-width: 200px;
  --logo-item-height: 120px;
  --logo-item-gap: 20px;
  --logo-border-radius: 12px;
  --logo-transition: all 0.3s ease-out;
  --logo-hover-scale: 1.05;
  --logo-animation-duration: 30s;
}

/*----------------------------------------*/
/*  UNIVERSAL SECTION STYLING - Standardized across all sections
/*----------------------------------------*/

/* Section Container */
.section_area {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Background Sections */
.bg-light-section {
  background-color: var(--review-color-grey-light);
}

/* Odd-Even Section Background Pattern for Home Page */
/* .section_area:nth-child(odd) {
  background-color: #0A0A0A;
}

.section_area:nth-child(even) {
  background-color: #6D6868;
} */

/* Universal Section Header */
.section_header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section_header {
    margin-bottom: 40px;
  }
}

.section_header.text-left {
  text-align: left;
  margin-bottom: 40px;
}

/* Universal Section Subtitle */
.section_subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--review-ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 16px;
  position: relative;
}

.section_subtitle_icon::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  display: block;
}

/* Dark section subtitle for black backgrounds */
.section_area:nth-child(odd) .section_subtitle {
  color: var(--primary-color);
}

/* Gray section subtitle for gray backgrounds */
.section_area:nth-child(even) .section_subtitle {
  color: var(--primary-color);
}

/* Universal Section Title */
.section_title {
  font-family: var(--review-ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--review-color-black-2);
}

/* Dark section title for black backgrounds */
.section_area:nth-child(odd) .section_title {
  color: var(--review-color-white);
}

/* Gray section title for gray backgrounds */
.section_area:nth-child(even) .section_title {
  color: var(--review-color-white);
}

.section_title .title_highlight {
  color: var(--primary-color);
  position: relative;
}

.section_title .title_highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  opacity: 0.3;
}

/* Responsive section adjustments */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_area {
    padding: 100px 0;
  }
  
  .section_title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_area {
    padding: 80px 0;
  }
  
  .section_title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .section_area {
    padding: 60px 0;
  }
  
  .section_title {
    font-size: 32px;
  }
}

/*----------------------------------------*/
/*  Review Section - Main Container
/*----------------------------------------*/
.review_section_area {
  padding: 120px 0;
  position: relative;
}

/* Remove individual background - use section_area pattern only */
.review_section_area.review_black_theme {
  background-color: transparent;
}

.review_black_theme .review_section_title {
  color: var(--review-color-white);
}

.review_black_theme .review_section_subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.review_black_theme .review_card_item {
  background: var(--logo-color-black-2);
  border-color: var(--logo-color-border-dark);
}

.review_black_theme .review_card_description {
  color: rgba(255, 255, 255, 0.9);
}

.review_black_theme .review_author_name {
  color: var(--review-color-white);
}

.review_black_theme .review_author_profession {
  color: rgba(255, 255, 255, 0.7);
}

.review_black_theme .review_author_image {
  border-color: var(--logo-color-border-dark);
}

.review_black_theme .review_card_author {
  border-top-color: var(--logo-color-border-dark);
}

/* Responsive padding adjustments - Following template patterns */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .review_section_area {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .review_section_area {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .review_section_area {
    padding: 60px 0;
  }
}

/*----------------------------------------*/
/*  Review Section Header
/*----------------------------------------*/
.review_section_header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .review_section_header {
    margin-bottom: 40px;
  }
}

.review_section_title {
  font-family: var(--review-ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: var(--review-color-black);
}

/* Responsive title sizing - Following template patterns */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .review_section_title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .review_section_title {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .review_section_title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .review_section_title {
    font-size: 28px;
  }
}

.review_section_subtitle {
  font-family: var(--review-ff-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--review-color-text-body);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .review_section_subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
}

/*----------------------------------------*/
/*  Review Cards Container - Horizontal Scroll System with Slider Controls
/*----------------------------------------*/
.review_cards_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 70px; /* Add padding for navigation arrows */
}

/* Better mobile responsiveness */
@media (max-width: 992px) {
  .review_cards_container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .review_cards_container {
    padding: 0 50px;
  }
}

@media (max-width: 576px) {
  .review_cards_container {
    padding: 0 15px;
  }
}

/* Slider Navigation Arrows */
.review_slider_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--review-color-white);
  border: 1px solid var(--review-color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--review-transition);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review_slider_nav:hover {
  background: var(--tp-common-px-red);
  border-color: var(--tp-common-px-red);
  color: var(--review-color-white);
  transform: translateY(-50%) scale(1.1);
}

.review_slider_nav.prev {
  left: 10px;
}

.review_slider_nav.next {
  right: 10px;
}

.review_slider_nav svg {
  width: 20px;
  height: 20px;
  transition: var(--review-transition);
}

/* Make navigation smaller on mobile but keep visible */
@media (max-width: 992px) {
  .review_slider_nav {
    width: 45px;
    height: 45px;
  }
  
  .review_slider_nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .review_slider_nav {
    width: 40px;
    height: 40px;
  }
  
  .review_slider_nav svg {
    width: 16px;
    height: 16px;
  }
  
  .review_slider_nav.prev {
    left: 8px;
  }
  
  .review_slider_nav.next {
    right: 8px;
  }
}

@media (max-width: 576px) {
  .review_slider_nav {
    display: none; /* Hide navigation arrows on very small screens */
  }
}

.review_cards_wrapper {
  display: flex;
  gap: var(--review-card-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review_cards_wrapper::-webkit-scrollbar {
  display: none;
}

/* Better mobile touch scrolling */
@media (max-width: 768px) {
  .review_cards_wrapper {
    gap: 16px;
    padding: 10px 5px;
  }
}

@media (max-width: 576px) {
  .review_cards_wrapper {
    gap: 12px;
    padding: 10px 0;
  }
}

/* Force single row layout on all screen sizes */
@media (min-width: 1200px) {
  .review_cards_wrapper {
    padding: 10px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .review_cards_wrapper {
    padding: 10px 0;
  }
}

/*----------------------------------------*/
/*  Individual Review Card Styling
/*----------------------------------------*/
.review_card_item {
  flex: 0 0 var(--review-card-width);
  min-height: var(--review-card-min-height);
  background: var(--review-color-white);
  border-radius: var(--review-border-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: var(--review-transition);
  border: 1px solid var(--review-color-border);
  position: relative;
  overflow: hidden;
}

/* Responsive card width adjustments */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .review_card_item {
    flex: 0 0 320px;
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .review_card_item {
    flex: 0 0 280px;
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .review_card_item {
    flex: 0 0 260px;
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .review_card_item {
    flex: 0 0 calc(100vw - 40px);
    max-width: 280px;
    min-height: 250px;
  }
}

/* Hover effects - Following template animation patterns */
.review_card_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--tp-common-px-red);
}

.review_card_content {
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .review_card_content {
    padding: 24px 20px;
  }
}

/*----------------------------------------*/
/*  Star Rating System
/*----------------------------------------*/
.review_card_rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review_star {
  font-size: 20px;
  color: var(--review-color-star-inactive);
  transition: var(--review-transition);
  user-select: none;
}

.review_star.active {
  color: var(--review-color-star);
}

/* Hover animation for stars */
.review_card_item:hover .review_star.active {
  transform: scale(1.1);
}

/*----------------------------------------*/
/*  Review Text Content
/*----------------------------------------*/
.review_card_description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--review-color-black-2);
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
}

/* Typography improvements for readability */
/* .review_card_description::before {
  content: '"';
  font-size: 24px;
  color: var(--tp-common-px-red);
  font-weight: 700;
  position: absolute;
  top: -8px;
  left: -8px;
  opacity: 0.6;
} */

@media (max-width: 767px) {
  .review_card_description {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

/*----------------------------------------*/
/*  Author Information Section
/*----------------------------------------*/
.review_card_author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--review-color-border);
}

.review_author_image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--review-color-border);
  transition: var(--review-transition);
}

.review_author_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--review-transition);
}

/* Image hover effects */
.review_card_item:hover .review_author_image {
  border-color: var(--tp-common-px-red);
}

.review_card_item:hover .review_author_image img {
  transform: scale(1.05);
}

.review_author_info {
  flex-grow: 1;
  min-width: 0; /* Allows text truncation if needed */
}

.review_author_name {
  font-family: var(--review-ff-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--review-color-black);
  letter-spacing: -0.02em;
}

.review_author_profession {
  font-family: var(--review-ff-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--review-color-text-body);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Responsive author info */
@media (max-width: 767px) {
  .review_author_name {
    font-size: 16px;
  }
  
  .review_author_profession {
    font-size: 13px;
  }
  
  .review_author_image {
    width: 50px;
    height: 50px;
  }
}

/*----------------------------------------*/
/*  Animation Enhancements - Following template patterns
/*----------------------------------------*/

/* Fade-in animation for cards */
@keyframes review_card_fade_in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review_card_item {
  animation: review_card_fade_in 0.6s ease-out forwards;
}

/* Staggered animation delay for multiple cards */
.review_card_item:nth-child(1) { animation-delay: 0.1s; }
.review_card_item:nth-child(2) { animation-delay: 0.2s; }
.review_card_item:nth-child(3) { animation-delay: 0.3s; }
.review_card_item:nth-child(4) { animation-delay: 0.4s; }
.review_card_item:nth-child(5) { animation-delay: 0.5s; }

/*----------------------------------------*/
/*  Accessibility Enhancements
/*----------------------------------------*/

/* Focus states for keyboard navigation */
.review_card_item:focus {
  outline: 2px solid var(--tp-common-px-red);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .review_card_item {
    animation: none;
  }
  
  .review_card_item,
  .review_star,
  .review_author_image,
  .review_author_image img {
    transition: none;
  }
  
  .review_cards_wrapper {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .review_card_item {
    border-width: 2px;
  }
  
  .review_card_description::before {
    opacity: 1;
  }
}

/*----------------------------------------*/
/*  Print Styles
/*----------------------------------------*/
@media print {
  .review_section_area {
    background: none !important;
    padding: 20px 0 !important;
  }
  
  .review_cards_wrapper {
    display: block !important;
    overflow: visible !important;
  }
  
  .review_card_item {
    break-inside: avoid;
    margin-bottom: 20px;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/*----------------------------------------*/
/*  CLIENT LOGO SLIDER SECTION - Modern Dark Theme Compatible
/*----------------------------------------*/

/*----------------------------------------*/
/*  Client Logo Section - Main Container
/*----------------------------------------*/
.client_logo_section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Remove individual background - use section_area pattern only */
.client_logo_section.logo_style_dark {
  background-color: transparent;
}

/* Responsive padding adjustments - Following template patterns */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client_logo_section {
    padding: 80px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client_logo_section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .client_logo_section {
    padding: 50px 0;
  }
}

/*----------------------------------------*/
/*  Client Logo Section Header
/*----------------------------------------*/
.client_logo_header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .client_logo_header {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}

.client_logo_title {
  font-family: var(--logo-ff-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: var(--logo-color-black);
}

/* Dark theme title */
.logo_style_dark .client_logo_title {
  color: var(--logo-color-white);
}

/* Responsive title sizing - Following template patterns */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .client_logo_title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client_logo_title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client_logo_title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .client_logo_title {
    font-size: 26px;
  }
}

.client_logo_subtitle {
  font-family: var(--logo-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--logo-color-text-body);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark theme subtitle */
.logo_style_dark .client_logo_subtitle {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .client_logo_subtitle {
    font-size: 15px;
  }
}

/*----------------------------------------*/
/*  Logo Container - Main Wrapper (Updated for Dual Row)
/*----------------------------------------*/
.client_logo_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* New dual container for 2-row layout */
.client_logo_container_dual {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

/* Individual row styling */
.client_logo_row {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  display: block !important;
}

/* Responsive gap adjustments */
@media only screen and (max-width: 991px) {
  .client_logo_container_dual {
    gap: 25px !important;
  }
}

@media (max-width: 767px) {
  .client_logo_container_dual {
    gap: 20px !important;
  }
}

/* Individual row styling */
.client_logo_row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Optional gradient overlay for infinite scroll effect */
.client_logo_container::before,
.client_logo_container::after,
.client_logo_row::before,
.client_logo_row::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: var(--logo-transition);
}

.client_logo_container::before,
.client_logo_row::before {
  left: 0;
  background: linear-gradient(to right, var(--logo-color-white), transparent);
}

.client_logo_container::after,
.client_logo_row::after {
  right: 0;
  background: linear-gradient(to left, var(--logo-color-white), transparent);
}

/* Dark theme gradients */
.logo_style_dark .client_logo_container::before,
.logo_style_dark .client_logo_row::before {
  background: linear-gradient(to right, var(--logo-color-black-2), transparent);
}

.logo_style_dark .client_logo_container::after,
.logo_style_dark .client_logo_row::after {
  background: linear-gradient(to left, var(--logo-color-black-2), transparent);
}

/* Show gradients on mobile for better scroll indication */
@media (max-width: 991px) {
  .client_logo_container::before,
  .client_logo_container::after,
  .client_logo_row::before,
  .client_logo_row::after {
    opacity: 1;
  }
}

/*----------------------------------------*/
/*  Logo Slider - Flex Layout (Single Row Auto-Slider)
/*----------------------------------------*/
.client_logo_slider {
  display: flex;
  gap: var(--logo-item-gap);
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  
  /* Auto-sliding animation for single row */
  animation: client_logo_scroll_left var(--logo-animation-duration) linear infinite;
  width: calc(200% + var(--logo-item-gap));
  
  /* Hide scrollbar while maintaining functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.client_logo_slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Pause animation on hover */
.client_logo_slider:hover {
  animation-play-state: paused;
}



/* Desktop responsive styles */
@media (min-width: 1200px) {
  .client_logo_slider {
    gap: var(--logo-item-gap);
  }
  
  /* Show duplicate items on desktop for seamless loop */
  .client_logo_duplicate {
    display: flex;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client_logo_slider {
    gap: 18px;
  }
  
  .client_logo_duplicate {
    display: flex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client_logo_slider {
    gap: 16px;
  }
  
  .client_logo_duplicate {
    display: flex;
  }
}

/* Mobile responsive styles */
@media (max-width: 767px) {
  .client_logo_slider {
    gap: 14px;
  }
  
  .client_logo_duplicate {
    display: flex;
  }
}

/*----------------------------------------*/
/*  Individual Logo Item Styling
/*----------------------------------------*/
.client_logo_item {
  flex: 0 0 var(--logo-item-width);
  height: var(--logo-item-height); 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Responsive logo item sizing */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client_logo_item {
    flex: 0 0 180px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .client_logo_item {
    flex: 0 0 160px;
    height: 100px;
  }
}

.client_logo_wrapper {
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-color-card-bg);
  border: 1px solid var(--logo-color-border);
  border-radius: var(--logo-border-radius);
  padding: 20px;
  transition: var(--logo-transition);
  position: relative;
  overflow: hidden;
}

/* Dark theme logo wrapper */
.logo_style_dark .client_logo_wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hover effects - Following template animation patterns */
.client_logo_wrapper:hover {
  transform: translateY(-5px) scale(var(--logo-hover-scale));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--logo-color-orange);
  background: var(--logo-color-grey-light);
}

.logo_style_dark .client_logo_wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--logo-color-orange);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

/* Responsive padding */
@media (max-width: 767px) {
  .client_logo_wrapper {
    padding: 15px;
  }
}

/*----------------------------------------*/
/*  Logo Image Styling - Always Show Color
/*----------------------------------------*/
.client_logo_wrapper img {
  filter: none; /* Remove grayscale and opacity filters */
  opacity: 1; /* Ensure full visibility */
}

/* Logo hover effects - Keep scaling but no color change */
.client_logo_wrapper:hover img {
  transform: scale(1.1); /* Keep hover scaling */
}

/*----------------------------------------*/
/*  Infinite Scroll Animation - Mobile Only (Updated for Dual Direction)
/*----------------------------------------*/
/* Left to Right Animation (Row 1) */
@keyframes client_logo_scroll_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Scroll by half to create seamless loop */
  }
}

/* Right to Left Animation (Row 2) */
@keyframes client_logo_scroll_right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0); /* Scroll in opposite direction */
  }
}

/* Legacy animation for backward compatibility */
@keyframes client_logo_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Animation improvements for seamless loop - width already set in main slider definition */

/*----------------------------------------*/
/*  Loading State Animation
/*----------------------------------------*/
@keyframes client_logo_fade_in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client_logo_item {
  animation: client_logo_fade_in 0.6s ease-out forwards;
}

/* Staggered animation delay for grid layout */
@media (min-width: 768px) {
  .client_logo_item:nth-child(1) { animation-delay: 0.1s; }
  .client_logo_item:nth-child(2) { animation-delay: 0.15s; }
  .client_logo_item:nth-child(3) { animation-delay: 0.2s; }
  .client_logo_item:nth-child(4) { animation-delay: 0.25s; }
  .client_logo_item:nth-child(5) { animation-delay: 0.3s; }
  .client_logo_item:nth-child(6) { animation-delay: 0.35s; }
  .client_logo_item:nth-child(7) { animation-delay: 0.4s; }
  .client_logo_item:nth-child(8) { animation-delay: 0.45s; }
  .client_logo_item:nth-child(9) { animation-delay: 0.5s; }
  .client_logo_item:nth-child(10) { animation-delay: 0.55s; }
  .client_logo_item:nth-child(11) { animation-delay: 0.6s; }
  .client_logo_item:nth-child(12) { animation-delay: 0.65s; }
}

/*----------------------------------------*/
/*  Accessibility Enhancements for Components
/*----------------------------------------*/

/* Focus states for keyboard navigation */
.review_card_item:focus,
.client_logo_wrapper:focus {
  outline: 2px solid var(--tp-common-px-red);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .review_card_item,
  .client_logo_item {
    animation: none;
  }
  
  .review_card_item,
  .review_star,
  .review_author_image,
  .review_author_image img,
  .client_logo_wrapper,
  .client_logo_wrapper img {
    transition: none;
  }
  
  .review_cards_wrapper,
  .client_logo_slider {
    scroll-behavior: auto;
    animation: none !important;
  }
  
  .review_card_item:hover,
  .client_logo_wrapper:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .review_card_item,
  .client_logo_wrapper {
    border-width: 2px;
  }
  
  .review_card_description::before {
    opacity: 1;
  }
  
  .client_logo_wrapper img {
    filter: grayscale(0) opacity(1) contrast(1.2);
  }
}

/*----------------------------------------*/
/*  Mechphy Text Animation - Color Cycling
/*----------------------------------------*/

.mechphy-box {
  display: flex;
  justify-content: center;
  align-items: center; 
}

@keyframes color {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.mechphy-text { 
  color: transparent;

  /* 🎖 Military Gradient */
  background: linear-gradient(
    90deg,
    #8A7F5A 0%,      /* Military Khaki */
    #7A7052 15%,     /* Darker Khaki Shade */
    #6D684A 30%,     /* Earthy Camouflage */
    #556B2F 50%,     /* Army Olive */
    #475C29 65%,     /* Dark Olive Shade */
    #3A4D23 80%,     /* Deep Forest Green */
    #556B2F 100%     /* Back to Olive */
  );

  background-clip: text;
  -webkit-background-clip: text;

  background-size: 500%;
  animation: color 8s linear infinite;
}


/*----------------------------------------*/
/*  ABOUT SECTION - Modern Black Theme
/*----------------------------------------*/

/* Main container */
.about_section_area {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Remove individual background - use section_area pattern only */
.about_section_area.about_black_theme {
  background-color: transparent;
}

/* Responsive padding adjustments */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_section_area {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_section_area {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .about_section_area {
    padding: 60px 0;
  }
}

/*----------------------------------------*/
/*  About Image Section
/*----------------------------------------*/
.about_image_wrapper {
  position: relative;
  padding: 20px;
}

.about_main_image {
  position: relative;
  border-radius: var(--review-border-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: var(--review-transition);
}

.about_main_image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--review-transition);
}

.about_main_image:hover img {
  transform: scale(1.05);
}

.about_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(138, 127, 90, 0.2) 100%);
  opacity: 0;
  transition: var(--review-transition);
}

.about_main_image:hover .about_image_overlay {
  opacity: 1;
}

.about_black_theme {
  border-color: var(--review-color-black);
}


.about_decoration_shape {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: var(--review-color-orange);
  border-radius: 50%;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive image adjustments */
@media (max-width: 991px) {
  .about_image_wrapper {
    margin-bottom: 40px;
  } 
}

@media (max-width: 767px) {
  
  .about_decoration_shape {
    width: 40px;
    height: 40px;
  }
}

/*----------------------------------------*/
/*  About Content Section
/*----------------------------------------*/
.about_content_wrapper {
  padding: 20px;
}

.about_section_header {
  margin-bottom: 30px;
}

.about_section_subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--review-ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--review-color-orange);
  margin-bottom: 16px;
  position: relative;
}

.about_black_theme .about_section_subtitle {
  color: var(--review-color-orange);
}

.about_subtitle_icon::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--review-color-orange);
  display: block;
}

.about_section_title {
  font-family: var(--review-ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--review-color-black-2);
}

.about_black_theme .about_section_title {
  color: var(--review-color-white);
}

.title_highlight {
  color: var(--review-color-orange);
  position: relative;
}

.title_highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--review-color-orange);
  opacity: 0.3;
}

/* Responsive title sizing */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_section_title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_section_title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about_section_title {
    font-size: 32px;
  }
}

/*----------------------------------------*/
/*  About Description
/*----------------------------------------*/
.about_description {
  margin-bottom: 40px;
}

.about_text_primary, .about_text_secondary {
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--review-color-text-body);
  margin-bottom: 0;
}

.about_black_theme .about_text_primary,
.about_black_theme .about_text_secondary {
  color: rgba(255, 255, 255, 0.8);
}

.about_text_primary {
  font-size: 18px;
}

@media (max-width: 767px) {
  .about_text_primary {
    font-size: 16px;
  }
  
  .about_text_secondary {
    font-size: 15px;
  }
}

/*----------------------------------------*/
/*  Statistics Cards
/*----------------------------------------*/
.about_stats_container {
  margin-bottom: 40px;
}

.about_stat_card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--review-color-white);
  border-radius: var(--review-border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--review-transition);
  margin-bottom: 20px;
  border: 1px solid var(--review-color-border);
}

.about_black_theme .about_stat_card {
  background: var(--review-color-black-2);
  border-color: #404040;
}

.about_stat_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--review-color-orange);
}

.stat_icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--review-color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--review-transition);
}

.stat_icon i {
  font-size: 24px;
  color: var(--review-color-white);
}

.about_stat_card:hover .stat_icon {
  transform: scale(1.1);
}

.stat_content {
  flex-grow: 1;
}

.stat_number {
  display: block;
  font-family: var(--review-ff-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--review-color-black);
  margin-bottom: 4px;
}

.about_black_theme .stat_number {
  color: var(--review-color-white);
}

.stat_label {
  font-family: var(--review-ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--review-color-text-body);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about_black_theme .stat_label {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive stats adjustments */
@media (max-width: 767px) {
  .about_stat_card {
    padding: 20px;
    gap: 16px;
  }
  
  .stat_icon {
    width: 50px;
    height: 50px;
  }
  
  .stat_icon i {
    font-size: 20px;
  }
  
  .stat_number {
    font-size: 28px;
  }
  
  .stat_label {
    font-size: 13px;
  }
}

/*----------------------------------------*/
/*  Additional Content & CTA Button
/*----------------------------------------*/
.about_additional_content {
  margin-top: 30px;
}

.about_action_button {
  margin-top: 30px;
}

.about_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--review-color-orange);
  color: var(--review-color-white);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--review-ff-heading);
  font-size: 16px;
  font-weight: 600;
  transition: var(--review-transition);
  box-shadow: 0 4px 15px rgba(138, 127, 90, 0.3);
}

.about_cta_btn:hover {
  background: var(--review-color-orange-dark);
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4); */
  color: var(--review-color-white);
  text-decoration: none;
}

.btn_text {
  line-height: 1;
}

.btn_icon {
  transition: var(--review-transition);
}

.about_cta_btn:hover .btn_icon {
  transform: translateX(4px);
}

.btn_icon i {
  font-size: 16px;
}

/* Responsive button adjustments */
@media (max-width: 767px) {
  .about_cta_btn {
    padding: 14px 24px;
    font-size: 15px;
    gap: 10px;
  }
}

/*----------------------------------------*/
/*  Animation Enhancements
/*----------------------------------------*/

/* Fade-in animations */
@keyframes about_fade_in_up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about_content_wrapper,
.about_image_wrapper {
  animation: about_fade_in_up 0.8s ease-out forwards;
}

/* Staggered animations for stat cards */
.about_stat_card:nth-child(1) { animation-delay: 0.2s; }
.about_stat_card:nth-child(2) { animation-delay: 0.4s; }

/*----------------------------------------*/
/*  Accessibility & Print Styles
/*----------------------------------------*/

/* Focus states */
.about_cta_btn:focus {
  outline: 2px solid var(--review-color-orange);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .about_main_image img, 
  .about_stat_card,
  .about_cta_btn,
  .about_decoration_shape {
    transition: none;
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .about_stat_card,
  .about_main_image, 
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .about_section_area {
    background: none !important;
    padding: 20px 0 !important; 
  }
  
  .about_decoration_shape {     
    display: none;
  }
  
  .about_stat_card {
    break-inside: avoid;        
    box-shadow: none !important;
  }
}

/*----------------------------------------*/
/*  FAQ SECTION - Modern Black Theme
/*----------------------------------------*/

/* Main container */
.faq_section_area {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Remove individual background - use section_area pattern only */
.faq_section_area.faq_black_theme {
  background-color: transparent;
}

/* Responsive padding adjustments */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq_section_area {
    padding: 100px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq_section_area {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .faq_section_area {
    padding: 60px 0;
  }
}

/*----------------------------------------*/
/*  FAQ Section Header
/*----------------------------------------*/
.faq_section_header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .faq_section_header {
    margin-bottom: 40px;
  }
}

.faq_section_subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--review-ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--review-color-orange);
  margin-bottom: 16px;
  position: relative;
}

.faq_black_theme .faq_section_subtitle {
  color: var(--review-color-orange);
}

.faq_subtitle_icon::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--review-color-orange);
  display: block;
}

.faq_section_title {
  font-family: var(--review-ff-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--review-color-black-2);
}

.faq_black_theme .faq_section_title {
  color: var(--review-color-white);
}

.faq_section_title .title_highlight {
  color: var(--review-color-orange);
  position: relative;
}

.faq_section_title .title_highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--review-color-orange);
  opacity: 0.3;
}

/* Responsive title sizing */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq_section_title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq_section_title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .faq_section_title {
    font-size: 32px;
  }
}

/*----------------------------------------*/
/*  FAQ Accordion Container
/*----------------------------------------*/
.faq_accordion_container {
  max-width: 900px;
  margin: 0 auto;
}

/*----------------------------------------*/
/*  FAQ Accordion Items
/*----------------------------------------*/
.faq_accordion_item {
  background: var(--review-color-white);
  border-radius: var(--review-border-radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--review-transition);
  border: 1px solid var(--review-color-border);
  overflow: hidden;
}

.faq_black_theme .faq_accordion_item {
  background: var(--review-color-black-2);
  border-color: #404040;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq_accordion_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq_black_theme .faq_accordion_item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.faq_accordion_item.active {
  border-color: var(--review-color-orange);
  /* box-shadow: 0 8px 30px rgba(255, 94, 0, 0.15); */
}

.faq_black_theme .faq_accordion_item.active {
  /* box-shadow: 0 8px 30px rgba(255, 94, 0, 0.25); */
}

/*----------------------------------------*/
/*  FAQ Question Section
/*----------------------------------------*/
.faq_question_wrapper {
  padding: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--review-transition);
  user-select: none;
}

.faq_question_wrapper:hover {
  background: rgba(138, 127, 90, 0.05);
}

.faq_black_theme .faq_question_wrapper:hover {
  background: rgba(138, 127, 90, 0.1);
}

.faq_question_content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

.faq_number {
  font-family: var(--review-ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--review-color-orange);
  background: rgba(138, 127, 90, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--review-transition);
}

.faq_accordion_item.active .faq_number {
  background: var(--review-color-orange);
  color: var(--review-color-white);
  transform: scale(1.1);
}

.faq_question_text {
  font-family: var(--review-ff-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--review-color-black);
  margin: 0;
  transition: var(--review-transition);
}

.faq_black_theme .faq_question_text {
  color: var(--review-color-white);
}

.faq_accordion_item.active .faq_question_text {
  color: var(--review-color-orange);
}

.faq_black_theme .faq_accordion_item.active .faq_question_text {
  color: var(--review-color-orange);
}

/*----------------------------------------*/
/*  FAQ Toggle Icon
/*----------------------------------------*/
.faq_toggle_icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: var(--review-transition);
}

.faq_icon_line {
  position: absolute;
  background: var(--review-color-black);
  transition: var(--review-transition);
  border-radius: 2px;
}

.faq_black_theme .faq_icon_line {
  background: var(--review-color-white);
}

.faq_icon_horizontal {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq_icon_vertical {
  width: 3px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--review-transition), opacity 0.3s ease;
}

.faq_accordion_item.active .faq_icon_vertical {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq_accordion_item.active .faq_toggle_icon {
  transform: rotate(180deg);
}

.faq_accordion_item.active .faq_icon_horizontal {
  background: var(--review-color-orange);
}

/*----------------------------------------*/
/*  FAQ Answer Section
/*----------------------------------------*/
.faq_answer_wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq_accordion_item.active .faq_answer_wrapper {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq_answer_content {
  padding: 0 30px;
  border-top: 1px solid var(--review-color-border);
  padding-top: 25px;
}

.faq_black_theme .faq_answer_content {
  border-top-color: #404040;
}

.faq_answer_content p {
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--review-color-text-body);
  margin: 0;
}

.faq_black_theme .faq_answer_content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive FAQ adjustments */
@media (max-width: 767px) {
  .faq_question_wrapper {
    padding: 24px 20px;
  }
  
  .faq_question_content {
    gap: 16px;
  }
  
  .faq_number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .faq_question_text {
    font-size: 16px;
  }
  
  .faq_toggle_icon {
    width: 26px;
    height: 26px;
  }
  
  .faq_icon_horizontal {
    width: 18px;
    height: 2px;
  }
  
  .faq_icon_vertical {
    width: 2px;
    height: 18px;
  }
  
  .faq_answer_content {
    padding: 0 20px;
    padding-top: 20px;
  }
  
  .faq_accordion_item.active .faq_answer_wrapper {
    padding-bottom: 24px;
  }
  
  .faq_answer_content p {
    font-size: 15px;
  }
}

/*----------------------------------------*/
/*  Animation Enhancements
/*----------------------------------------*/

/* Fade-in animation for FAQ items */
@keyframes faq_fade_in_up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq_accordion_item {
  animation: faq_fade_in_up 0.6s ease-out forwards;
}

/* Staggered animation delay for multiple items */
.faq_accordion_item:nth-child(1) { animation-delay: 0.1s; }
.faq_accordion_item:nth-child(2) { animation-delay: 0.2s; }
.faq_accordion_item:nth-child(3) { animation-delay: 0.3s; }
.faq_accordion_item:nth-child(4) { animation-delay: 0.4s; }
.faq_accordion_item:nth-child(5) { animation-delay: 0.5s; }
.faq_accordion_item:nth-child(6) { animation-delay: 0.6s; }

/*----------------------------------------*/
/*  Accessibility & Print Styles
/*----------------------------------------*/

/* Focus states for keyboard navigation */
.faq_question_wrapper:focus {
  outline: 2px solid var(--review-color-orange);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .faq_accordion_item {
    animation: none;
  }
  
  .faq_accordion_item,
  .faq_question_wrapper,
  .faq_toggle_icon,
  .faq_icon_line,
  .faq_answer_wrapper,
  .faq_number {
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .faq_accordion_item {
    border-width: 2px;
  }
  
  .faq_answer_content {
    border-top-width: 2px;
  }
}

/* Print styles */
@media print {
  .faq_section_area {
    background: none !important;
    padding: 20px 0 !important;
  }
  
  .faq_accordion_item {
    break-inside: avoid;
    margin-bottom: 15px;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .faq_answer_wrapper {
    max-height: none !important;
    padding-bottom: 15px !important;
  }
  
  .faq_toggle_icon {
    display: none;
  }
}

/*----------------------------------------*/
/*  ABOUT PAGE SECTIONS STYLING
/*----------------------------------------*/

/* Universal Section Title */
.section_title {
  font-family: var(--review-ff-heading);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--review-color-black);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .section_title {
    font-size: 32px;
  }
}

/* Section Description */
.section_description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--review-color-text-body);
  margin-bottom: 0;
}

/* Section Subtitle Icon */
.section_subtitle_icon::before {
  /* content: "●"; */
  color: var(--primary-color);
  margin-right: 8px;
}

/* Who We Are Section */
.who-we-are-section .about-content-box {
  padding-right: 30px;
}

.about-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 600; 
  color: white;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
}

.about-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.about-image-box img:hover {
  transform: translateY(-5px);
}

/* Mission & Vision Section */
.mission-vision-section {
  background-color: var(--review-color-grey-light);
}

.mission-card {
  background: #0e0f11;
  padding: 40px 30px;
  border-radius: var(--review-border-radius);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--review-transition);
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
}

.mission-icon i {
  font-size: 36px;
  color: var(--review-color-white);
}

.mission-card h3 {
  font-family: var(--review-ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-family: var(--review-ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: white;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

/* .mission-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
} */

/* Training Section */
.training-section .training-content-box {
  padding-left: 30px;
}

.training-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.training-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 600;
  color: white;
  padding: 12px 20px;
  background: rgba(138, 127, 90, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
}

.training-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.training-image-box img:hover {
  transform: translateY(-5px);
}

/* Teaching Method Section */
.teaching-method-section {
  background-color: var(--review-color-grey-light);
}

.method-content-box {
  padding-left: 30px;
}

.method-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.method-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.method-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 16px;
  color: white;
}

.method-point i {
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
}

.method-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.method-image-box img:hover {
  transform: translateY(-5px);
}

/* Facilities Section */
.facilities-section {
  background-color: var(--review-color-grey-light);
}

.facilities-content-box {
  padding-right: 30px;
}

.facilities-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 15px;
  font-weight: 600;
  color: white;
  padding: 15px;
  background: #0e0f11;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--review-transition);
}

.facility-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.facility-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
}

.facilities-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.facilities-image-box img:hover {
  transform: translateY(-5px);
}

/* Core Values Section */
.value-card {
  background: #1c1d20;
  padding: 30px 25px;
  border-radius: var(--review-border-radius);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--review-transition);
  margin-bottom: 30px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
}

.value-icon i {
  font-size: 24px;
  color: var(--review-color-white);
}

.value-card p {
  font-family: var(--review-ff-body);
  font-size: 15px;
  line-height: 1.5;
  color: white;
  margin: 0;
  font-weight: 600;
}

/* Who Can Join Section */
.who-can-join-section {
  background-color: var(--review-color-grey-light);
}

.join-content-box {
  padding-left: 30px;
}

.join-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.join-criteria {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 600; 
  padding: 12px 20px;
  background: #0e0f11;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--review-transition);
  color:white;
}

.criteria-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.criteria-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
}

.join-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.join-image-box img:hover {
  transform: translateY(-5px);
}

/* Our Promise Section */
.promise-content-box {
  padding-right: 30px;
}

.promise-description {
  font-family: var(--review-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.promise-commitments {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--review-ff-body);
  font-size: 16px;
  font-weight: 600; 
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(138, 127, 90, 0.1), rgba(138, 127, 90, 0.05));
  border-radius: 8px;
  border: 1px solid rgba(138, 127, 90, 0.2);
  transition: var(--review-transition);
  color:white;
}

.commitment-item:hover {
  background: linear-gradient(135deg, rgba(138, 127, 90, 0.15), rgba(138, 127, 90, 0.08));
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.commitment-item i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
}

.promise-image-box img {
  border-radius: var(--review-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--review-transition);
}

.promise-image-box img:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-content-box,
  .training-content-box,
  .method-content-box,
  .facilities-content-box,
  .join-content-box,
  .promise-content-box {
    padding: 0;
    margin-bottom: 40px;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-features,
  .training-highlights,
  .method-points,
  .join-criteria,
  .promise-commitments {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .section_area {
    padding: 80px 0;
  }
  
  .mission-card,
  .value-card {
    padding: 25px 20px;
  }
  
  .value-card {
    height: auto;
    min-height: 180px;
  }
  
  .mission-icon,
  .value-icon {
    width: 50px;
    height: 50px;
  }
  
  .mission-icon i {
    font-size: 24px;
  }
  
  .value-icon i {
    font-size: 20px;
  }
}


.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--review-color-orange-dark);
  color: var(--review-color-white);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--review-ff-heading);
  font-size: 16px;
  font-weight: 600;
  transition: var(--review-transition);
  /* box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3); */
}

.custom-btn:hover {
  background: var(--review-color-orange-dark); 
  transform: translateY(-2px);
  color: var(--review-color-white);
  text-decoration: none;
}



@media (max-width: 992px) {
    .px-pd-2-banner img,.tp-blog-details-banner img, .tp-blog-details-banner img {
        height:500px;
    }
}

@media (max-width: 768px) {
    .px-pd-2-banner img,.tp-blog-details-banner img, .tp-blog-details-banner img {
        height:400px;
    }
}