/* POSH Act Section Styles - Modern & Animated */
.posh-act-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.posh-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 171, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 171, 0, 0.03) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes  patternMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}

/* Header Styles */
.posh-header-wrapper {
  position: relative;
  z-index: 2;
}

.posh-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 171, 0, 0.3);
  margin-bottom: 20px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes  badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 171, 0, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 171, 0, 0.5); }
}

.posh-main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
}

.posh-title-line {
  display: block;
  color: #333333;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.posh-title-highlight {
  display: block;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInRight 0.8s ease 0.5s both;
}

.posh-title-icon-wrapper {
  margin: 30px 0;
  animation: fadeInScale 1s ease 0.7s both;
}

.posh-title-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
  animation: iconFloat 3s ease-in-out infinite;
}

.posh-title-icon i {
  font-size: 36px;
  color: #ffffff;
}

.posh-header-decoration {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  margin: 30px auto 0;
  border-radius: 2px;
  animation: expandWidth 1s ease 0.9s both;
}

/* Modern Card Styles */
.posh-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(255, 171, 0, 0.1);
}

.posh-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 171, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.posh-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 171, 0, 0.2);
  border-color: rgba(255, 171, 0, 0.3);
}

.posh-card-modern:hover .posh-card-glow {
  opacity: 1;
}

.posh-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.posh-section-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 20px rgba(255, 171, 0, 0.3);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes  iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.posh-section-icon {
  font-size: 28px;
  color: #ffffff;
}

.posh-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.posh-title-underline-animated {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  margin-bottom: 30px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.posh-title-underline-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 2s infinite;
}

@keyframes  shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.posh-content-text {
  animation: fadeInUp 0.8s ease 0.3s both;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Modern List Styles */
.posh-list-modern {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  flex: 1;
}

.posh-list-item-animated {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.05) 0%, rgba(255, 188, 51, 0.05) 100%);
  border-radius: 10px;
  border-left: 4px solid #FFAB00;
  transition: all 0.4s ease;
  animation: slideInLeft 0.6s ease both;
}

.posh-list-item-animated:nth-child(1) { animation-delay: 0.1s; }
.posh-list-item-animated:nth-child(2) { animation-delay: 0.2s; }
.posh-list-item-animated:nth-child(3) { animation-delay: 0.3s; }

.posh-list-item-animated:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.1) 0%, rgba(255, 188, 51, 0.1) 100%);
  box-shadow: 0 5px 15px rgba(255, 171, 0, 0.2);
}

.posh-list-icon-wrapper {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.posh-list-icon-wrapper i {
  color: #ffffff;
  font-size: 16px;
}

.posh-warning-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 10px;
  margin-top: auto;
  display: flex;
  align-items: flex-start;
}

.posh-warning-box i {
  color: #ffc107;
  font-size: 24px;
  margin-right: 15px;
  margin-top: 2px;
}

/* Services Section */
.posh-services-header {
  margin-bottom: 60px;
}

/* POSH Services Title - Using Our Volunteers style (matches section-title h3) */
.posh-services-main-title,
.section-title h3.text-uppercase {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  font-family: 'Raleway', sans-serif;
}

.posh-services-subtitle-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.posh-services-subtitle {
  font-size: 18px;
  color: #FFAB00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0 20px;
}

.posh-services-subtitle::before,
.posh-services-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFAB00);
}

.posh-services-subtitle::before {
  left: -40px;
}

.posh-services-subtitle::after {
  right: -40px;
  background: linear-gradient(90deg, #FFAB00, transparent);
}

/* Modern Service Cards */
.posh-service-card-modern {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.posh-service-card-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
}

.posh-service-card-modern:hover .posh-service-card-inner {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.25);
  border-color: #FFAB00;
}

.posh-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 171, 0, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.posh-service-card-modern:hover .posh-service-number {
  color: rgba(255, 171, 0, 0.2);
  transform: scale(1.1);
}

.posh-service-icon-modern {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.posh-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes  iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 171, 0, 0.6); }
}

.posh-service-icon-modern i {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.4s ease;
}

.posh-service-card-modern:hover .posh-service-icon-modern i {
  transform: rotate(10deg) scale(1.1);
}

.posh-service-title-modern {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.posh-service-card-modern:hover .posh-service-title-modern {
  color: #FFAB00;
}

.posh-service-text-modern {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.7;
}

.posh-service-list-modern {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.posh-service-list-modern li {
  padding: 10px 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.posh-service-list-modern li i {
  color: #FFAB00;
  margin-right: 10px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.posh-service-card-modern:hover .posh-service-list-modern li {
  color: #333333;
  padding-left: 5px;
}

.posh-service-card-modern:hover .posh-service-list-modern li i {
  transform: translateX(5px);
}

.posh-service-features-modern {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.posh-features-title {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
}

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

.posh-features-list li {
  padding: 8px 0;
  color: #666666;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.posh-features-list li i {
  color: #FFAB00;
  margin-right: 10px;
  font-size: 14px;
}

.posh-service-note {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.05) 0%, rgba(255, 188, 51, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  border-left: 3px solid #FFAB00;
}

.posh-service-note i {
  color: #FFAB00;
  margin-right: 10px;
  margin-top: 2px;
  font-size: 18px;
}

.posh-service-note span {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

.posh-service-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 171, 0, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.posh-service-card-modern:hover .posh-service-hover-effect {
  left: 100%;
}

/* Roadmap Design Styles */
.posh-roadmap-container {
  position: relative;
  padding: 60px 0;
  margin: 40px 0;
}

.posh-roadmap-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* Roadmap Line - Dotted (Hidden for 2-2-1 layout) */
.posh-roadmap-line {
  display: none;
}

/* Roadmap Cards Container */
.posh-roadmap-cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 0;
}

/* Roadmap Item - 2-2-1 Layout */
.posh-roadmap-item {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

/* First row (cards 1-2) */
.posh-roadmap-item:nth-child(1),
.posh-roadmap-item:nth-child(2) {
  margin-bottom: 60px;
}

/* Second row (cards 3-4) */
.posh-roadmap-item:nth-child(3),
.posh-roadmap-item:nth-child(4) {
  margin-bottom: 60px;
}

/* Third row (card 5) - centered */
.posh-roadmap-item:nth-child(5) {
  flex: 0 0 48%;
  max-width: 48%;
  margin: 0 auto;
  margin-bottom: 0;
}

/* Dotted Lines Removed - No connecting lines between cards */

@keyframes  dottedLinePulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Roadmap Card - Equal Size */
.posh-roadmap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
  text-align: center;
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.posh-roadmap-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.3);
  border-color: #FFAB00;
}

/* Roadmap Connector - Removed (no connecting elements needed) */
.posh-roadmap-connector {
  display: none;
}

/* Roadmap Number */
.posh-roadmap-number {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 171, 0, 0.4);
  z-index: 4;
  border: 3px solid #ffffff;
}

/* Roadmap Icon */
.posh-roadmap-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posh-roadmap-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
  transition: all 0.5s ease;
  animation: iconPulse 2s ease-in-out infinite;
}

.posh-roadmap-card:hover .posh-roadmap-icon-bg {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 12px 35px rgba(255, 171, 0, 0.6);
}

.posh-roadmap-icon-wrapper i {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: #ffffff;
  display: block;
  line-height: 1;
  transition: all 0.4s ease;
  width: 100%;
  text-align: center;
}

/* Ensure fifth card icon is visible and properly displayed */
.posh-roadmap-item:nth-child(5) .posh-roadmap-icon-wrapper {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 80px !important;
  height: 80px !important;
}

.posh-roadmap-item:nth-child(5) .posh-roadmap-icon-bg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
}

.posh-roadmap-item:nth-child(5) .posh-roadmap-icon-wrapper i {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 36px !important;
  color: #ffffff !important;
  position: relative !important;
  z-index: 2 !important;
  line-height: 80px !important;
  text-align: center !important;
}

.posh-roadmap-card:hover .posh-roadmap-icon-wrapper i {
  transform: scale(1.1);
}

/* Roadmap Title */
.posh-roadmap-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posh-roadmap-card:hover .posh-roadmap-title {
  color: #FFAB00;
}

/* Roadmap Text */
.posh-roadmap-text {
  font-size: 13px;
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.6;
  min-height: 40px;
}

/* Roadmap List */
.posh-roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  text-align: left;
  flex: 1;
}

.posh-roadmap-list li {
  padding: 6px 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.posh-roadmap-list li i {
  color: #FFAB00;
  margin-right: 8px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.posh-roadmap-card:hover .posh-roadmap-list li {
  color: #333333;
  padding-left: 3px;
}

.posh-roadmap-card:hover .posh-roadmap-list li i {
  transform: translateX(3px);
}

/* Roadmap Details */
.posh-roadmap-details {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.posh-roadmap-details-title {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.posh-roadmap-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
}

.posh-roadmap-features li {
  padding: 5px 0;
  color: #666666;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.posh-roadmap-features li i {
  color: #FFAB00;
  margin-right: 8px;
  font-size: 11px;
}

/* Roadmap Note */
.posh-roadmap-note {
  margin-top: auto;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.05) 0%, rgba(255, 188, 51, 0.05) 100%);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  border-left: 3px solid #FFAB00;
  font-size: 12px;
}

/* For cards with details section */
.posh-roadmap-card .posh-roadmap-details + .posh-roadmap-note {
  margin-top: 15px;
}

.posh-roadmap-note i {
  color: #FFAB00;
  margin-right: 8px;
  margin-top: 2px;
  font-size: 14px;
  flex-shrink: 0;
}

.posh-roadmap-note span {
  color: #666666;
  line-height: 1.5;
}

.posh-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.posh-subtitle {
  font-size: 16px;
  color: #666666;
  margin-top: 15px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* About Box */
/* Ensure equal heights for side-by-side sections */
.row.mb-80 > .col-md-6 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.row.mb-80 > .col-md-6 > .posh-about-box,
.row.mb-80 > .col-md-6 > .posh-understanding-box {
  flex: 1;
  height: 100%;
  min-height: 100%;
}

.posh-about-box,
.posh-understanding-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 2px solid transparent;
  height: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.posh-about-box:hover,
.posh-understanding-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.25);
  border-color: #FFAB00;
}

.posh-about-content,
.posh-understanding-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.posh-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
}

.posh-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  margin-bottom: 25px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease 0.6s both;
}

.posh-title-underline-center {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  margin: 0 auto 25px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease 0.6s both;
}

.posh-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 15px;
  text-align: justify;
}

.posh-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.posh-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.posh-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
}

/* Service Cards */
.posh-services-row {
  margin-top: 30px;
}

.posh-service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.posh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  transition: left 0.5s ease;
}

.posh-service-card:hover::before {
  left: 0;
}

.posh-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-top-color: #FFAB00;
}

.posh-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
}

.posh-service-card:hover .posh-service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.5);
}

.posh-service-icon i {
  font-size: 32px;
  color: #ffffff;
}

.posh-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.posh-service-card:hover .posh-service-title {
  color: #FFAB00;
}

.posh-service-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 15px;
  text-align: center;
}

.posh-service-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
  text-align: left;
}

.posh-service-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.posh-service-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
}

.posh-service-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.posh-service-wide {
  padding: 40px;
}

/* Approach Section - Modern */
.posh-approach-section {
  position: relative;
}

.posh-approach-header {
  margin-bottom: 60px;
}

/* Our Approach Title - Using Our Volunteers style (matches section-title h3) */
.posh-approach-main-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

.posh-approach-item-modern {
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.posh-approach-card-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  min-height: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.posh-approach-item-modern:hover .posh-approach-card-inner {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.25);
  border-color: #FFAB00;
}

.posh-approach-icon-modern {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.posh-approach-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
  transition: all 0.5s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

.posh-approach-item-modern:hover .posh-approach-icon-bg {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 12px 35px rgba(255, 171, 0, 0.6);
}

.posh-approach-icon-modern i {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.4s ease;
}

.posh-approach-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.posh-approach-item-modern:hover .posh-approach-title-modern {
  color: #FFAB00;
}

.posh-approach-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FFAB00 0%, #ffbc33 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.posh-approach-item-modern:hover .posh-approach-divider {
  width: 80px;
}

.posh-approach-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}

.posh-approach-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.05) 0%, rgba(255, 188, 51, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.posh-approach-item-modern:hover .posh-approach-hover-bg {
  opacity: 1;
}

/* Ensure all approach cards have equal height */
.posh-approach-cards-row {
  display: flex;
  flex-wrap: wrap;
}

.posh-approach-cards-row > div {
  display: flex;
  flex-direction: column;
}

.posh-approach-cards-row .posh-approach-item-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.posh-approach-cards-row .posh-approach-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Why Work With Us - Modern */
.posh-why-section {
  position: relative;
}

.posh-why-header {
  margin-bottom: 60px;
}

/* Why Work With Us Title - Using Our Volunteers style (matches section-title h3) */
.posh-why-main-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

/* Ensure all section titles match Our Volunteers style */
.section-title h3.text-uppercase.mt-0 {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  font-family: 'Raleway', sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Ensure all why cards in single row with equal sizes */
.posh-why-cards-row {
  display: flex;
  flex-wrap: wrap;
}

.posh-why-cards-row > div {
  display: flex;
  flex-direction: column;
}

.posh-why-item-modern {
  height: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.posh-why-card-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.posh-why-item-modern:hover .posh-why-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.25);
  border-color: #FFAB00;
}

.posh-why-icon-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  flex-shrink: 0;
}

.posh-why-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
  transition: all 0.5s ease;
}

.posh-why-item-modern:hover .posh-why-icon-bg {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 35px rgba(255, 171, 0, 0.6);
}

.posh-why-icon-modern i {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  line-height: 1;
}

/* Ensure Balanced approach card (4th card) icon is visible */
.posh-why-item-modern:nth-child(4) .posh-why-icon-modern {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 80px !important;
  height: 80px !important;
}

.posh-why-item-modern:nth-child(4) .posh-why-icon-bg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
}

.posh-why-item-modern:nth-child(4) .posh-why-icon-modern i {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 36px !important;
  color: #ffffff !important;
  position: relative !important;
  z-index: 2 !important;
}

.posh-why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.posh-why-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.posh-why-item-modern:hover .posh-why-title-modern {
  color: #FFAB00;
}

.posh-why-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.posh-why-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 171, 0, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.posh-why-item-modern:hover .posh-why-hover-effect {
  left: 100%;
}

.posh-why-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.posh-why-footer-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* Commitment Section - Modern */
.posh-commitment-section {
  position: relative;
  border-radius: 30px;
  padding: 80px 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFAB00 0%, #ffbc33 100%);
  box-shadow: 0 20px 60px rgba(255, 171, 0, 0.3);
}

.posh-commitment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: bgMove 15s ease-in-out infinite;
}

@keyframes  bgMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.posh-commitment-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
  opacity: 0.5;
}

.posh-commitment-content {
  position: relative;
  z-index: 3;
}

.posh-commitment-icon-modern {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.posh-commitment-icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes  ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.posh-commitment-icon-modern i {
  position: relative;
  z-index: 2;
  font-size: 56px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.posh-commitment-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.posh-commitment-underline {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto 35px;
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}

.posh-commitment-text {
  font-size: 18px;
  line-height: 1.9;
  color: #ffffff;
  margin: 0 auto;
  max-width: 800px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.posh-commitment-decoration {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.posh-decoration-item {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: decorationPulse 2s ease-in-out infinite;
}

.posh-decoration-item:nth-child(1) { animation-delay: 0s; }
.posh-decoration-item:nth-child(2) { animation-delay: 0.3s; }
.posh-decoration-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes  decorationPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Enhanced Animations */
.animated-badge {
  opacity: 0;
  transform: translateY(-20px) scale(0.8);
  animation: badgeEntrance 0.8s ease 0.2s forwards;
}

@keyframes  badgeEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animated-title {
  opacity: 0;
}

.animated-icon {
  opacity: 0;
  transform: scale(0);
}

.animated-subtitle {
  opacity: 0;
  transform: translateY(20px);
}

.animated-posh-box {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated-posh-box.animated {
  opacity: 1;
  transform: translateY(0);
}

.animated-posh-card {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated-posh-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animated-posh-card:nth-child(1) {
  transition-delay: 0.1s;
}

.animated-posh-card:nth-child(2) {
  transition-delay: 0.2s;
}

.animated-posh-card:nth-child(3) {
  transition-delay: 0.3s;
}

.animated-posh-card:nth-child(4) {
  transition-delay: 0.4s;
}

.animated-posh-card:nth-child(5) {
  transition-delay: 0.5s;
}

.animated-approach-item {
  opacity: 0;
  transform: translateY(40px) rotateX(20deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated-approach-item.animated {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.animated-approach-item:nth-child(1) { transition-delay: 0.1s; }
.animated-approach-item:nth-child(2) { transition-delay: 0.2s; }
.animated-approach-item:nth-child(3) { transition-delay: 0.3s; }
.animated-approach-item:nth-child(4) { transition-delay: 0.4s; }

.animated-why-item {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated-why-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.animated-why-item:nth-child(1) { transition-delay: 0.1s; }
.animated-why-item:nth-child(2) { transition-delay: 0.2s; }
.animated-why-item:nth-child(3) { transition-delay: 0.3s; }
.animated-why-item:nth-child(4) { transition-delay: 0.4s; }

/* Keyframe Animations */
@keyframes  slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes  slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes  fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes  iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes  expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

@keyframes  fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes  fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes  fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes  fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles - Modern POSH Section */
@media (max-width: 991px) {
  .posh-act-section {
    padding: 80px 0;
  }
  
  .posh-main-title {
    font-size: 32px;
  }
  
  .posh-title-line,
  .posh-title-highlight {
    display: inline;
  }
  
  .posh-card-modern {
    padding: 40px 30px;
  }
  
  .posh-about-box,
  .posh-understanding-box {
    padding: 35px 25px;
    min-height: 500px;
  }
  
  .posh-section-title {
    font-size: 26px;
  }
  
  .posh-service-card-inner {
    padding: 35px 25px;
  }
  
  .posh-service-number {
    font-size: 60px;
  }
  
  .posh-service-icon-modern {
    width: 80px;
    height: 80px;
  }
  
  .posh-service-icon-modern i {
    font-size: 36px;
  }
  
  .posh-services-main-title,
  .posh-approach-main-title,
  .posh-why-main-title,
  .section-title h3.text-uppercase.mt-0 {
    font-size: 24px;
  }
  
  .posh-approach-card-inner,
  .posh-why-card-inner {
    padding: 35px 25px;
    min-height: 300px;
  }
  
  .posh-approach-icon-modern {
    width: 90px;
    height: 90px;
  }
  
  .posh-approach-title-modern {
    min-height: 48px;
  }
  
  .posh-approach-text {
    min-height: 58px;
  }
  
  .posh-why-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }
  
  .posh-why-title-modern {
    min-height: 45px;
    font-size: 18px;
  }
  
  .posh-why-text {
    min-height: 55px;
    font-size: 13px;
  }
  
  .posh-commitment-section {
    padding: 60px 40px;
  }
  
  .posh-commitment-icon-modern {
    width: 100px;
    height: 100px;
  }
  
  .posh-commitment-title {
    font-size: 30px;
  }
  
  /* Roadmap Responsive - Tablet */
  .posh-roadmap-container {
    padding: 50px 0;
  }
  
  .posh-roadmap-cards {
    gap: 0;
  }
  
  .posh-roadmap-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 50px;
  }
  
  .posh-roadmap-item:nth-child(5) {
    flex: 0 0 48%;
    max-width: 48%;
  }
  
  .posh-roadmap-card {
    padding: 30px 20px;
    min-height: 420px;
  }
  
  .posh-roadmap-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .posh-roadmap-icon-wrapper i {
    font-size: 32px;
  }
  
  .posh-roadmap-title {
    font-size: 16px;
    min-height: 50px;
  }
}

@media (max-width: 767px) {
  .posh-act-section {
    padding: 60px 0;
  }
  
  .posh-badge {
    font-size: 10px;
    padding: 6px 15px;
  }
  
  .posh-main-title {
    font-size: 24px;
  }
  
  .posh-title-icon {
    width: 60px;
    height: 60px;
  }
  
  .posh-title-icon i {
    font-size: 28px;
  }
  
  .posh-subtitle {
    font-size: 14px;
  }
  
  .posh-card-modern {
    padding: 30px 20px;
  }
  
  .posh-about-box,
  .posh-understanding-box {
    padding: 30px 20px;
    min-height: auto;
  }
  
  .row.mb-80 > .col-md-6 {
    margin-bottom: 30px;
    height: auto;
  }
  
  .row.mb-80 > .col-md-6 > .posh-about-box,
  .row.mb-80 > .col-md-6 > .posh-understanding-box {
    min-height: auto;
    height: auto;
  }
  
  .posh-section-header {
    flex-direction: column;
    text-align: center;
  }
  
  .posh-section-icon-wrapper {
    margin: 0 auto 15px;
  }
  
  .posh-section-title {
    font-size: 22px;
    text-align: center;
  }
  
  .posh-title-underline-animated {
    margin: 0 auto 25px;
  }
  
  .posh-text {
    font-size: 14px;
    text-align: left;
  }
  
  .posh-list-item-animated {
    padding: 12px 15px;
    font-size: 13px;
  }
  
  .posh-list-icon-wrapper {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
  
  .posh-list-icon-wrapper i {
    font-size: 14px;
  }
  
  .posh-service-card-inner {
    padding: 30px 20px;
  }
  
  .posh-service-number {
    font-size: 50px;
    top: 15px;
    right: 15px;
  }
  
  .posh-service-icon-modern {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .posh-service-icon-modern i {
    font-size: 32px;
  }
  
  .posh-service-title-modern {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .posh-service-text-modern {
    font-size: 13px;
  }
  
  .posh-service-list-modern li {
    font-size: 13px;
  }
  
  .posh-services-main-title,
  .posh-approach-main-title,
  .posh-why-main-title,
  .section-title h3.text-uppercase.mt-0 {
    font-size: 20px;
  }
  
  .posh-approach-card-inner {
    padding: 30px 20px;
    min-height: 320px;
  }
  
  .posh-approach-icon-modern {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .posh-approach-icon-modern i {
    font-size: 36px;
  }
  
  .posh-approach-title-modern {
    font-size: 18px;
    min-height: 45px;
  }
  
  .posh-approach-text {
    font-size: 13px;
    min-height: 55px;
  }
  
  .posh-why-card-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    min-height: 250px;
  }
  
  .posh-why-icon-modern {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
  }
  
  .posh-why-title-modern {
    font-size: 18px;
    min-height: 45px;
  }
  
  .posh-why-text {
    font-size: 13px;
    min-height: 55px;
  }
  
  .posh-commitment-section {
    padding: 50px 25px;
    border-radius: 20px;
  }
  
  .posh-commitment-icon-modern {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }
  
  .posh-commitment-icon-modern i {
    font-size: 48px;
  }
  
  .posh-commitment-title {
    font-size: 24px;
  }
  
  .posh-commitment-text {
    font-size: 15px;
  }
  
  /* Roadmap Responsive - Mobile */
  .posh-roadmap-container {
    padding: 40px 0;
    margin: 30px 0;
  }
  
  .posh-roadmap-line {
    display: none;
  }
  
  .posh-roadmap-item::after,
  .posh-roadmap-item::before {
    display: none !important;
  }
  
  .posh-roadmap-connector {
    display: none !important;
  }
  
  .posh-roadmap-cards {
    flex-direction: column;
    gap: 0;
  }
  
  .posh-roadmap-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
  }
  
  .posh-roadmap-item:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .posh-roadmap-card {
    padding: 30px 20px;
    margin-top: 40px;
    min-height: auto;
  }
  
  .posh-roadmap-connector {
    top: -30px;
    width: 35px;
    height: 35px;
  }
  
  .posh-roadmap-connector::before {
    width: 10px;
    height: 10px;
  }
  
  .posh-roadmap-number {
    top: -60px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .posh-roadmap-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  
  .posh-roadmap-icon-wrapper i {
    font-size: 30px;
  }
  
  .posh-roadmap-title {
    font-size: 16px;
    min-height: auto;
    margin-bottom: 12px;
  }
  
  .posh-roadmap-text {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .posh-roadmap-list li {
    font-size: 12px;
    padding: 5px 0;
  }
  
  .posh-roadmap-note {
    font-size: 11px;
    padding: 10px;
  }
  
  .posh-roadmap-note i {
    font-size: 12px;
  }
}
