/*
 * Service Page Inline Styles
 * Extracted from service.html for better organization
 */

 body {transition: opacity ease-in 0.2s; } 
 body[unresolved] {opacity: 0; display: block; overflow: hidden; position: relative; }
 
 .wf-force-outline-none[tabindex="-1"]:focus{outline:none;}
 
 .lf-progress {
   -webkit-appearance: none;
   -moz-apperance: none;
   width: 100%;
   /* margin: 0 10px; */
   height: 4px;
   border-radius: 3px;
   cursor: pointer;
 }
 .lf-progress:focus {
   outline: none;
   border: none;
 }
 .lf-progress::-moz-range-track {
   cursor: pointer;
   background: none;
   border: none;
   outline: none;
 }
 .lf-progress::-webkit-slider-thumb {
   -webkit-appearance: none !important;
   height: 13px;
   width: 13px;
   border: 0;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress::-moz-range-thumb {
   -moz-appearance: none !important;
   height: 13px;
   width: 13px;
   border: 0;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress::-ms-track {
   width: 100%;
   height: 3px;
   cursor: pointer;
   background: transparent;
   border-color: transparent;
   color: transparent;
 }
 .lf-progress::-ms-fill-lower {
   background: #ccc;
   border-radius: 3px;
 }
 .lf-progress::-ms-fill-upper {
   background: #ccc;
   border-radius: 3px;
 }
 .lf-progress::-ms-thumb {
   border: 0;
   height: 15px;
   width: 15px;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress:focus::-ms-fill-lower {
   background: #ccc;
 }
 .lf-progress:focus::-ms-fill-upper {
   background: #ccc;
 }
 .lf-player-container :focus {
   outline: 0;
 }
 .lf-popover {
   position: relative;
 }
 
 .lf-popover-content {
   display: inline-block;
   position: absolute;
   opacity: 1;
   visibility: visible;
   transform: translate(0, -10px);
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
   transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);
 }
 
 .lf-popover-content.hidden {
   opacity: 0;
   visibility: hidden;
   transform: translate(0, 0px);
 }
 
 .lf-player-btn-container {
   display: flex;
   align-items: center;
 }
 .lf-player-btn {
   cursor: pointer;
   fill: #999;
   width: 14px;
 }
 
 .lf-player-btn.active {
   fill: var(--color-gray-text);
 }
 
 .lf-popover {
   position: relative;
 }
 
 .lf-popover-content {
   display: inline-block;
   position: absolute;
   background-color: var(--color-white);
   opacity: 1;
 
   transform: translate(0, -10px);
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
   transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);
   padding: 10px;
 }
 
 .lf-popover-content.hidden {
   opacity: 0;
   visibility: hidden;
   transform: translate(0, 0px);
 }
 
 .lf-arrow {
   position: absolute;
   z-index: -1;
   content: '';
   bottom: -9px;
   border-style: solid;
   border-width: 10px 10px 0px 10px;
 }
 
 .lf-left-align,
 .lf-left-align .lfarrow {
   left: 0;
   right: unset;
 }
 
 .lf-right-align,
 .lf-right-align .lf-arrow {
   right: 0;
   left: unset;
 }
 
 .lf-text-input {
   border: 1px #ccc solid;
   border-radius: 5px;
   padding: 3px;
   width: 60px;
   margin: 0;
 }
 
 .lf-color-picker {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   height: 90px;
 }
 
 .lf-color-selectors {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }
 
 .lf-color-component {
   display: flex;
   flex-direction: row;
   font-size: 12px;
   align-items: center;
   justify-content: center;
 }
 
 .lf-color-component strong {
   width: 40px;
 }
 
 .lf-color-component input[type='range'] {
   margin: 0 0 0 10px;
 }
 
 .lf-color-component input[type='number'] {
   width: 50px;
   margin: 0 0 0 10px;
 }
 
 .lf-color-preview {
   font-size: 12px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   padding-left: 5px;
 }
 
 .lf-preview {
   height: 60px;
   width: 60px;
 }
 
 .lf-popover-snapshot {
   width: 150px;
 }
 .lf-popover-snapshot h5 {
   margin: 5px 0 10px 0;
   font-size: 0.75rem;
 }
 .lf-popover-snapshot a {
   display: block;
   text-decoration: none;
 }
 .lf-popover-snapshot a:before {
   content: '⥼';
   margin-right: 5px;
 }
 .lf-popover-snapshot .lf-note {
   display: block;
   margin-top: 10px;
   color: #999;
 }
 .lf-player-controls > div {
   margin-right: 5px;
   margin-left: 5px;
 }
 .lf-player-controls > div:first-child {
   margin-left: 0px;
 }
 .lf-player-controls > div:last-child {
   margin-right: 0px;
 }
 
 .lf-progress {
   -webkit-appearance: none;
   -moz-apperance: none;
   width: 100%;
   /* margin: 0 10px; */
   height: 4px;
   border-radius: 3px;
   cursor: pointer;
 }
 .lf-progress:focus {
   outline: none;
   border: none;
 }
 .lf-progress::-moz-range-track {
   cursor: pointer;
   background: none;
   border: none;
   outline: none;
 }
 .lf-progress::-webkit-slider-thumb {
   -webkit-appearance: none !important;
   height: 13px;
   width: 13px;
   border: 0;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress::-moz-range-thumb {
   -moz-appearance: none !important;
   height: 13px;
   width: 13px;
   border: 0;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress::-ms-track {
   width: 100%;
   height: 3px;
   cursor: pointer;
   background: transparent;
   border-color: transparent;
   color: transparent;
 }
 .lf-progress::-ms-fill-lower {
   background: #ccc;
   border-radius: 3px;
 }
 .lf-progress::-ms-fill-upper {
   background: #ccc;
   border-radius: 3px;
 }
 .lf-progress::-ms-thumb {
   border: 0;
   height: 15px;
   width: 15px;
   border-radius: 50%;
   background: var(--color-primary);
   cursor: pointer;
 }
 .lf-progress:focus::-ms-fill-lower {
   background: #ccc;
 }
 .lf-progress:focus::-ms-fill-upper {
   background: #ccc;
 }
 .lf-player-container :focus {
   outline: 0;
 }
 .lf-popover {
   position: relative;
 }
 
 .lf-popover-content {
   display: inline-block;
   position: absolute;
   opacity: 1;
   visibility: visible;
   transform: translate(0, -10px);
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
   transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);
 }
 
 .lf-popover-content.hidden {
   opacity: 0;
   visibility: hidden;
   transform: translate(0, 0px);
 }
 
 .lf-player-btn-container {
   display: flex;
   align-items: center;
 }
 .lf-player-btn {
   cursor: pointer;
   fill: #999;
   width: 14px;
 }
 
 .lf-player-btn.active {
   fill: var(--color-gray-text);
 }
 
 .lf-popover {
   position: relative;
 }
 
 .lf-popover-content {
   display: inline-block;
   position: absolute;
   background-color: var(--color-white);
   opacity: 1;
 
   transform: translate(0, -10px);
   box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
   transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);
   padding: 10px;
 }
 
 .lf-popover-content.hidden {
   opacity: 0;
   visibility: hidden;
   transform: translate(0, 0px);
 }
 
 .lf-arrow {
   position: absolute;
   z-index: -1;
   content: '';
   bottom: -9px;
   border-style: solid;
   border-width: 10px 10px 0px 10px;
 }
 
 .lf-left-align,
 .lf-left-align .lfarrow {
   left: 0;
   right: unset;
 }
 
 .lf-right-align,
 .lf-right-align .lf-arrow {
   right: 0;
   left: unset;
 }
 
 .lf-text-input {
   border: 1px #ccc solid;
   border-radius: 5px;
   padding: 3px;
   width: 60px;
   margin: 0;
 }
 
 .lf-color-picker {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   height: 90px;
 }
 
 .lf-color-selectors {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }
 
 .lf-color-component {
   display: flex;
   flex-direction: row;
   font-size: 12px;
   align-items: center;
   justify-content: center;
 }
 
 .lf-color-component strong {
   width: 40px;
 }
 
 .lf-color-component input[type='range'] {
   margin: 0 0 0 10px;
 }
 
 .lf-color-component input[type='number'] {
   width: 50px;
   margin: 0 0 0 10px;
 }
 
 .lf-color-preview {
   font-size: 12px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   padding-left: 5px;
 }
 
 .lf-preview {
   height: 60px;
   width: 60px;
 }
 
 .lf-popover-snapshot {
   width: 150px;
 }
 .lf-popover-snapshot h5 {
   margin: 5px 0 10px 0;
   font-size: 0.75rem;
 }
 .lf-popover-snapshot a {
   display: block;
   text-decoration: none;
 }
 .lf-popover-snapshot a:before {
   content: '⥼';
   margin-right: 5px;
 }
 .lf-popover-snapshot .lf-note {
   display: block;
   margin-top: 10px;
   color: #999;
 }
 .lf-player-controls > div {
   margin-right: 5px;
   margin-left: 5px;
 }
 .lf-player-controls > div:first-child {
   margin-left: 0px;
 }
 .lf-player-controls > div:last-child {
   margin-right: 0px;
 }
 
 [data-wf-bgvideo-fallback-img] {
     display: none;
   }
   @media (prefers-reduced-motion: reduce) {
     [data-wf-bgvideo-fallback-img] {
       position: absolute;
       z-index: -100;
       display: inline-block;
       height: 100%;
       width: 100%;
       object-fit: cover;
     }
   }
 
 /* ============================================
    SERVICE PAGE ENHANCEMENTS
    ============================================ */
 
 /* Service Details Section */
 .service-details {
     margin-top: 20px !important;
     padding-top: 20px !important;
     border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
     opacity: 0 !important;
     max-height: 0 !important;
     overflow: hidden !important;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
 }
 
 .service-item:hover .service-details,
 .service-item.active .service-details {
     opacity: 1 !important;
     max-height: 1000px !important;
     margin-top: 20px !important;
 }
 
 .service-description {
     font-size: 15px !important;
     line-height: 1.8 !important;
     color: rgba(0, 0, 0, 0.75) !important; /* Darker for better readability */
     margin-bottom: 20px !important;
     font-weight: 400 !important;
     text-align: right !important;
     direction: rtl !important;
     background: rgba(255, 255, 255, 0.6) !important;
     padding: 20px !important;
     border-radius: 12px !important;
     backdrop-filter: blur(5px) !important;
     -webkit-backdrop-filter: blur(5px) !important;
     border: 1px solid rgba(255, 255, 255, 0.3) !important;
 }
 
 .service-features {
     list-style: none !important;
     padding: 0 !important;
     margin: 0 !important;
     display: grid !important;
     grid-template-columns: repeat(2, 1fr) !important;
     gap: 12px !important;
     text-align: right !important;
     direction: rtl !important;
 }
 
 .service-features li {
     font-size: 14px !important;
     line-height: 1.6 !important;
     color: rgba(0, 0, 0, 0.7) !important; /* Darker for better readability */
     padding: 10px 24px 10px 10px !important;
     position: relative !important;
     transition: all 0.3s ease !important;
     background: rgba(255, 255, 255, 0.4) !important;
     border-radius: 8px !important;
     margin-bottom: 4px !important;
     backdrop-filter: blur(3px) !important;
     -webkit-backdrop-filter: blur(3px) !important;
 }
 
 .service-features li::before {
     content: '✓' !important;
     position: absolute !important;
     right: 0 !important;
     color: var(--color-primary, #6BCB3D) !important;
     font-weight: 700 !important;
     font-size: 16px !important;
 }
 
 .service-features li:hover {
     color: rgba(0, 0, 0, 0.9) !important;
     transform: translateX(-5px) !important;
     background: rgba(255, 255, 255, 0.6) !important;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
 }
 
 /* Service Item Interactive Effects - Rich Base Styling */
 .service-item {
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     cursor: pointer !important;
     position: relative !important;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
     border-radius: 16px !important;
     padding: 40px 30px !important;
     margin-bottom: 30px !important;
     border: 1px solid rgba(255, 255, 255, 0.08) !important;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
     backdrop-filter: blur(10px) !important;
     -webkit-backdrop-filter: blur(10px) !important;
     overflow: hidden !important; /* Prevent content from going out of box */
 }
 
 .service-item:hover {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
     border-color: rgba(107, 203, 61, 0.3) !important;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(107, 203, 61, 0.2) !important;
     transform: translateY(-3px) !important; /* Reduced movement */
 }
 
 .service-item::before {
     content: '' !important;
     position: absolute !important;
     top: 0 !important;
     right: 0 !important;
     width: 5px !important;
     height: 30% !important; /* Visible even before hover */
     background: linear-gradient(180deg, var(--color-primary, #6BCB3D) 0%, rgba(107, 203, 61, 0.5) 100%) !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     z-index: 1 !important;
     border-radius: 0 16px 16px 0 !important;
     opacity: 0.6 !important;
 }
 
 .service-item:hover::before,
 .service-item.active::before {
     height: 100% !important;
     opacity: 1 !important;
     width: 6px !important;
 }
 
 .service-item-left {
     overflow: visible !important; /* Allow number to scale but contain it */
     position: relative !important;
 }
 
 .service-number {
     color: rgba(107, 203, 61, 0.7) !important; /* More visible base color */
     font-weight: 700 !important;
     font-size: 48px !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     text-shadow: 0 2px 10px rgba(107, 203, 61, 0.2) !important;
     display: inline-block !important; /* Prevent overflow */
     transform-origin: center center !important; /* Center the transform */
     line-height: 1 !important; /* Prevent extra spacing */
     margin: 0 !important;
     padding: 0 !important;
 }
 
 .service-item:hover .service-number,
 .service-item.active .service-number {
     color: var(--color-primary, #6BCB3D) !important;
     transform: scale(1.05) !important; /* Reduced scale to keep in box */
     text-shadow: 0 4px 20px rgba(107, 203, 61, 0.4) !important;
 }
 
 .service-title {
     color: rgba(60, 60, 60, 0.9) !important; /* Dark gray before hover */
     font-weight: 600 !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     text-shadow: none !important;
 }
 
 .service-item:hover .service-title,
 .service-item.active .service-title {
     color: rgba(40, 40, 40, 1) !important; /* Darker gray on hover */
     transform: translateX(-5px) !important; /* Reduced movement */
     text-shadow: none !important;
 }
 
 /* Service Info Animation */
 .service-info {
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     overflow: hidden !important; /* Prevent overflow */
 }
 
 .service-item:hover .service-info,
 .service-item.active .service-info {
     height: auto !important;
     width: auto !important;
 }
 
 /* Service Thumbnail Interactive Effects - Rich Base + Motion */
 .service-thumb-wrap {
     position: relative !important;
     overflow: hidden !important;
     border-radius: 16px !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
     background: rgba(0, 0, 0, 0.1) !important;
     border: 2px solid rgba(255, 255, 255, 0.1) !important;
 }
 
 .service-thumb {
     width: 100% !important;
     height: 100% !important;
     object-fit: cover !important;
     transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     filter: brightness(0.9) contrast(1.05) saturate(1.1) !important;
     animation: imageFloat 8s ease-in-out infinite !important; /* Slower animation */
     transform-origin: center center !important;
 }
 
 @keyframes imageFloat {
     0%, 100% {
         transform: translateY(0) scale(1) rotate(0deg);
     }
     50% {
         transform: translateY(-5px) scale(1.01) rotate(0.3deg); /* Reduced movement */
     }
 }
 
 .service-item:hover .service-thumb,
 .service-item.active .service-thumb {
     transform: scale(1.08) translateY(-3px) !important; /* Reduced scale and movement */
     filter: brightness(1.05) contrast(1.1) saturate(1.15) !important; /* Subtle filter change */
     animation: imagePulse 3s ease-in-out infinite !important; /* Slower pulse */
 }
 
 @keyframes imagePulse {
     0%, 100% {
         transform: scale(1.08) translateY(-3px);
     }
     50% {
         transform: scale(1.1) translateY(-5px); /* Reduced movement */
     }
 }
 
 .service-thumb-wrap::before {
     content: '' !important;
     position: absolute !important;
     top: 0 !important;
     left: 0 !important;
     width: 100% !important;
     height: 100% !important;
     background: linear-gradient(135deg, rgba(107, 203, 61, 0.15) 0%, rgba(107, 203, 61, 0.05) 100%) !important;
     opacity: 0.3 !important; /* Visible even before hover */
     transition: opacity 0.5s ease !important; /* Slower, more delicate */
     pointer-events: none !important;
     z-index: 1 !important;
     border-radius: 16px !important;
 }
 
 .service-thumb-wrap::after {
     content: '' !important;
     position: absolute !important;
     top: 0 !important;
     left: 0 !important;
     width: 100% !important;
     height: 100% !important;
     background: linear-gradient(135deg, rgba(107, 203, 61, 0.2) 0%, rgba(107, 203, 61, 0.4) 100%) !important;
     opacity: 0 !important;
     transition: opacity 0.5s ease !important; /* Slower, more delicate */
     pointer-events: none !important;
     z-index: 2 !important;
     border-radius: 16px !important;
 }
 
 .service-item:hover .service-thumb-wrap::after,
 .service-item.active .service-thumb-wrap::after {
     opacity: 1 !important;
 }
 
 .service-item:hover .service-thumb-wrap,
 .service-item.active .service-thumb-wrap {
     box-shadow: 0 12px 40px rgba(107, 203, 61, 0.25), 0 0 0 2px rgba(107, 203, 61, 0.3) !important;
     transform: translateY(-2px) !important; /* Reduced movement */
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
 }
 
 /* Service Tag Hover Effects - Rich Base Styling */
 .service-tag {
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
     background: rgba(107, 203, 61, 0.1) !important; /* Visible base background */
     border: 1px solid rgba(107, 203, 61, 0.2) !important;
     padding: 8px 16px !important;
     border-radius: 20px !important;
     font-size: 13px !important;
     font-weight: 500 !important;
     color: rgba(255, 255, 255, 0.9) !important;
     backdrop-filter: blur(5px) !important;
     -webkit-backdrop-filter: blur(5px) !important;
 }
 
 .service-item:hover .service-tag,
 .service-item.active .service-tag {
     background: rgba(107, 203, 61, 0.25) !important;
     border-color: var(--color-primary, #6BCB3D) !important;
     transform: translateY(-2px) scale(1.03) !important; /* Reduced movement */
     box-shadow: 0 4px 12px rgba(107, 203, 61, 0.3) !important;
     color: #FFFFFF !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Slower, more delicate */
 }
 
 /* Service Summary Enhancement */
 .service-summary {
     transition: all 0.3s ease !important;
     color: rgba(255, 255, 255, 0.85) !important; /* More visible base color */
     font-size: 16px !important;
     line-height: 1.7 !important;
     background: rgba(255, 255, 255, 0.05) !important;
     padding: 16px 20px !important;
     border-radius: 10px !important;
     border-right: 3px solid rgba(107, 203, 61, 0.3) !important;
     margin-top: 16px !important;
 }
 
 .service-item:hover .service-summary,
 .service-item.active .service-summary {
     color: rgba(255, 255, 255, 0.95) !important;
     background: rgba(255, 255, 255, 0.1) !important;
     border-right-color: var(--color-primary, #6BCB3D) !important;
 }
 
 /* Responsive Adjustments */
 @media (max-width: 992px) {
     .service-features {
         grid-template-columns: 1fr !important;
         gap: 10px !important;
     }
     
     .service-description {
         font-size: 14px !important;
     }
     
     .service-features li {
         font-size: 13px !important;
     }
 }
 
 @media (max-width: 768px) {
     .service-details {
         margin-top: 15px !important;
         padding-top: 15px !important;
     }
     
     .service-description {
         font-size: 13px !important;
         line-height: 1.7 !important;
         margin-bottom: 15px !important;
     }
     
     .service-features {
         gap: 8px !important;
     }
     
     .service-features li {
         font-size: 12px !important;
         padding-right: 20px !important;
     }
 }
 
 /* ============================================
    OUTCOMES SECTION STYLES
    ============================================ */
 
 .outcomes-area {
     margin-right: var(--_sizes---space--space-10) !important;
     margin-left: var(--_sizes---space--space-10) !important;
     padding-top: var(--_sizes---space--space-120) !important;
     padding-bottom: var(--_sizes---space--space-120) !important;
     border-radius: var(--_sizes---radius--radius-20) !important;
     background: #FFFFFF !important;
 }
 
 .outcomes-top {
     padding-bottom: var(--_sizes---space--space-60) !important;
     text-align: center !important;
     max-width: 800px !important;
     margin-left: auto !important;
     margin-right: auto !important;
 }
 
 .outcomes-grid {
     display: grid !important;
     grid-template-columns: repeat(4, 1fr) !important;
     gap: 24px !important;
     margin-top: 40px !important;
 }
 
 .outcome-card {
     background: #FFFFFF !important;
     border-radius: 8px !important;
     padding: 32px 24px !important;
     text-align: center !important;
     transition: all 0.3s ease !important;
     border: 1px solid rgba(0, 0, 0, 0.08) !important;
     box-shadow: none !important;
     direction: rtl !important;
 }
 
 .outcome-card:hover {
     border-color: rgba(0, 0, 0, 0.15) !important;
     background: #FAFAFA !important;
 }
 
 .outcome-icon {
     width: 40px !important;
     height: 40px !important;
     margin: 0 auto 20px auto !important;
     display: block !important;
     color: rgba(60, 60, 60, 1) !important;
     transition: color 0.3s ease !important;
 }
 
 .outcome-card:hover .outcome-icon {
     color: rgba(40, 40, 40, 1) !important;
 }
 
 .outcome-title {
     font-size: 20px !important;
     font-weight: 700 !important;
     color: rgba(40, 40, 40, 1) !important;
     margin-bottom: 12px !important;
     line-height: 1.4 !important;
 }
 
 .outcome-description {
     font-size: 14px !important;
     line-height: 1.7 !important;
     color: rgba(60, 60, 60, 0.8) !important;
     margin: 0 !important;
 }
 
 /* ============================================
    PROCESS CONFIDENCE SECTION STYLES
    ============================================ */
 
 .process-confidence-area {
     margin-right: var(--_sizes---space--space-10) !important;
     margin-left: var(--_sizes---space--space-10) !important;
     padding-top: var(--_sizes---space--space-120) !important;
     padding-bottom: var(--_sizes---space--space-120) !important;
     border-radius: var(--_sizes---radius--radius-20) !important;
     background: #FFFFFF !important;
 }
 
 .process-confidence-top {
     padding-bottom: var(--_sizes---space--space-60) !important;
     text-align: center !important;
     max-width: 800px !important;
     margin-left: auto !important;
     margin-right: auto !important;
 }
 
 .process-timeline {
     display: flex !important;
     flex-direction: column !important;
     gap: 32px !important;
     max-width: 900px !important;
     margin: 0 auto !important;
     position: relative !important;
     padding-right: 40px !important;
     direction: rtl !important;
 }
 
 .process-timeline::before {
     content: '' !important;
     position: absolute !important;
     right: 20px !important;
     top: 0 !important;
     bottom: 0 !important;
     width: 2px !important;
     background: rgba(0, 0, 0, 0.12) !important;
     border-radius: 0 !important;
     transition: background 0.5s ease !important;
 }
 
 .process-timeline::after {
     content: '' !important;
     position: absolute !important;
     right: 20px !important;
     top: 0 !important;
     width: 2px !important;
     height: 0% !important;
     background: linear-gradient(180deg, var(--color-primary, #6BCB3D) 0%, rgba(107, 203, 61, 0.8) 100%) !important;
     border-radius: 0 !important;
     transition: height 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
     z-index: 1 !important;
 }
 
 .process-timeline.active::after {
     animation: timelineFill 2s ease-out forwards !important;
 }
 
 @keyframes timelineFill {
     0% {
         height: 0% !important;
     }
     100% {
         height: 100% !important;
     }
 }
 
 .process-timeline.active::before {
     animation: timelinePulse 2s ease-in-out infinite !important;
 }
 
 @keyframes timelinePulse {
     0%, 100% {
         box-shadow: 0 0 0 0 rgba(107, 203, 61, 0.4);
     }
     50% {
         box-shadow: 0 0 0 8px rgba(107, 203, 61, 0);
     }
 }
 
 .process-step {
     display: flex !important;
     gap: 24px !important;
     align-items: flex-start !important;
     position: relative !important;
     padding-right: 60px !important;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
     opacity: 0 !important;
     transform: translateX(30px) !important;
 }
 
 .process-step.animate-in {
     opacity: 1 !important;
     transform: translateX(0) !important;
 }
 
 .process-step::before {
     content: '' !important;
     position: absolute !important;
     right: 14px !important;
     top: 20px !important;
     width: 20px !important;
     height: 20px !important;
     background: rgba(60, 60, 60, 1) !important;
     border-radius: 50% !important;
     border: 4px solid #FFFFFF !important;
     z-index: 2 !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
     transform: scale(1) !important;
 }
 
 .process-step::after {
     content: '' !important;
     position: absolute !important;
     right: 14px !important;
     top: 20px !important;
     width: 20px !important;
     height: 20px !important;
     border-radius: 50% !important;
     background: rgba(107, 203, 61, 0.1) !important;
     z-index: 1 !important;
     transform: scale(1) !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
     opacity: 0 !important;
 }
 
 .process-step.active::before,
 .process-step:hover::before {
     background: var(--color-primary, #6BCB3D) !important;
     width: 24px !important;
     height: 24px !important;
     right: 12px !important;
     top: 18px !important;
     border-width: 5px !important;
     box-shadow: 0 0 0 6px rgba(107, 203, 61, 0.2), 0 0 0 12px rgba(107, 203, 61, 0.1), 0 4px 12px rgba(107, 203, 61, 0.3) !important;
     animation: indicatorPulse 2s ease-in-out infinite, indicatorRotate 4s linear infinite !important;
     transform: scale(1.1) !important;
 }
 
 .process-step.active::after,
 .process-step:hover::after {
     opacity: 1 !important;
     transform: scale(2.5) !important;
     background: rgba(107, 203, 61, 0.15) !important;
     animation: indicatorRipple 2s ease-out infinite !important;
 }
 
 @keyframes indicatorPulse {
     0%, 100% {
         box-shadow: 0 0 0 6px rgba(107, 203, 61, 0.2), 0 0 0 12px rgba(107, 203, 61, 0.1), 0 4px 12px rgba(107, 203, 61, 0.3);
     }
     50% {
         box-shadow: 0 0 0 8px rgba(107, 203, 61, 0.3), 0 0 0 16px rgba(107, 203, 61, 0.15), 0 6px 16px rgba(107, 203, 61, 0.4);
     }
 }
 
 @keyframes indicatorRotate {
     0% {
         transform: scale(1.1) rotate(0deg);
     }
     100% {
         transform: scale(1.1) rotate(360deg);
     }
 }
 
 @keyframes indicatorRipple {
     0% {
         transform: scale(1);
         opacity: 0.8;
     }
     50% {
         transform: scale(2.5);
         opacity: 0.4;
     }
     100% {
         transform: scale(3);
         opacity: 0;
     }
 }
 
 .process-step:hover {
     transform: translateX(-8px) !important;
 }
 
 .step-number {
     font-size: 20px !important;
     font-weight: 700 !important;
     color: rgba(60, 60, 60, 1) !important;
     flex-shrink: 0 !important;
     width: 56px !important;
     height: 56px !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%) !important;
     border-radius: 12px !important;
     border: 2px solid rgba(0, 0, 0, 0.08) !important;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
     position: relative !important;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
 }
 
 .step-number::before {
     content: '' !important;
     position: absolute !important;
     top: -2px !important;
     left: -2px !important;
     right: -2px !important;
     bottom: -2px !important;
     border-radius: 12px !important;
     background: linear-gradient(135deg, var(--color-primary, #6BCB3D), rgba(107, 203, 61, 0.6)) !important;
     opacity: 0 !important;
     transition: opacity 0.5s ease !important;
     z-index: -1 !important;
 }
 
 .step-number::after {
     content: '' !important;
     position: absolute !important;
     top: 50% !important;
     left: 50% !important;
     transform: translate(-50%, -50%) scale(0) !important;
     width: 80px !important;
     height: 80px !important;
     border-radius: 12px !important;
     background: rgba(107, 203, 61, 0.15) !important;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
     z-index: -2 !important;
     filter: blur(8px) !important;
 }
 
 .process-step.active .step-number,
 .process-step:hover .step-number {
     background: linear-gradient(135deg, var(--color-primary, #6BCB3D) 0%, rgba(107, 203, 61, 0.8) 100%) !important;
     color: #FFFFFF !important;
     transform: scale(1.05) rotate(5deg) !important;
     border-color: var(--color-primary, #6BCB3D) !important;
     box-shadow: 0 8px 24px rgba(107, 203, 61, 0.4), 0 0 0 4px rgba(107, 203, 61, 0.1) !important;
     animation: numberGlow 2s ease-in-out infinite !important;
 }
 
 .process-step.active .step-number::before,
 .process-step:hover .step-number::before {
     opacity: 1 !important;
     animation: gradientRotate 3s linear infinite !important;
 }
 
 .process-step.active .step-number::after,
 .process-step:hover .step-number::after {
     transform: translate(-50%, -50%) scale(1.2) !important;
     background: rgba(107, 203, 61, 0.2) !important;
 }
 
 @keyframes numberGlow {
     0%, 100% {
         box-shadow: 0 8px 24px rgba(107, 203, 61, 0.4), 0 0 0 4px rgba(107, 203, 61, 0.1);
     }
     50% {
         box-shadow: 0 12px 32px rgba(107, 203, 61, 0.5), 0 0 0 6px rgba(107, 203, 61, 0.15);
     }
 }
 
 @keyframes gradientRotate {
     0% {
         background: linear-gradient(135deg, var(--color-primary, #6BCB3D), rgba(107, 203, 61, 0.6));
     }
     50% {
         background: linear-gradient(225deg, var(--color-primary, #6BCB3D), rgba(107, 203, 61, 0.6));
     }
     100% {
         background: linear-gradient(135deg, var(--color-primary, #6BCB3D), rgba(107, 203, 61, 0.6));
     }
 }
 
 .step-content {
     flex: 1 !important;
     background: #FFFFFF !important;
     border-radius: 8px !important;
     padding: 24px !important;
     border: 1px solid rgba(0, 0, 0, 0.08) !important;
     border-right: 3px solid transparent !important;
     box-shadow: none !important;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
     position: relative !important;
     overflow: hidden !important;
 }
 
 .step-content::before {
     content: '' !important;
     position: absolute !important;
     top: 0 !important;
     right: 0 !important;
     width: 3px !important;
     height: 0% !important;
     background: var(--color-primary, #6BCB3D) !important;
     transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
     z-index: 1 !important;
 }
 
 .process-step.active .step-content,
 .process-step:hover .step-content {
     border-color: rgba(107, 203, 61, 0.2) !important;
     border-right-color: var(--color-primary, #6BCB3D) !important;
     background: rgba(107, 203, 61, 0.02) !important;
     box-shadow: 0 4px 20px rgba(107, 203, 61, 0.1) !important;
     transform: translateX(-4px) !important;
 }
 
 .process-step.active .step-content::before,
 .process-step:hover .step-content::before {
     height: 100% !important;
 }
 
 .step-title {
     font-size: 22px !important;
     font-weight: 700 !important;
     color: rgba(40, 40, 40, 1) !important;
     margin-bottom: 12px !important;
     line-height: 1.3 !important;
     transition: color 0.4s ease !important;
     position: relative !important;
 }
 
 .process-step.active .step-title,
 .process-step:hover .step-title {
     color: var(--color-primary, #6BCB3D) !important;
 }
 
 .step-description {
     font-size: 15px !important;
     line-height: 1.7 !important;
     color: rgba(60, 60, 60, 0.8) !important;
     margin: 0 !important;
 }
 
 /* Responsive Adjustments for Outcomes and Process Sections */
 @media (max-width: 992px) {
     .outcomes-grid {
         grid-template-columns: repeat(2, 1fr) !important;
         gap: 20px !important;
     }
     
     .process-timeline {
         padding-right: 30px !important;
     }
     
     .process-step {
         padding-right: 50px !important;
     }
 }
 
 @media (max-width: 768px) {
     .outcomes-grid {
         grid-template-columns: 1fr !important;
         gap: 16px !important;
     }
     
     .outcome-card {
         padding: 24px 20px !important;
     }
     
     .outcome-icon {
         font-size: 40px !important;
         margin-bottom: 16px !important;
     }
     
     .outcome-title {
         font-size: 18px !important;
     }
     
     .outcome-description {
         font-size: 13px !important;
     }
     
     .process-timeline {
         padding-right: 20px !important;
         gap: 24px !important;
     }
     
     .process-timeline::before {
         right: 10px !important;
         width: 2px !important;
     }
     
     .process-step {
         padding-right: 40px !important;
         gap: 16px !important;
     }
     
     .process-step::before {
         right: 8px !important;
         top: 16px !important;
         width: 18px !important;
         height: 18px !important;
         border-width: 4px !important;
     }
     
     .process-step.active::before,
     .process-step:hover::before {
         width: 22px !important;
         height: 22px !important;
         right: 7px !important;
         top: 15px !important;
     }
     
     .step-number {
         width: 48px !important;
         height: 48px !important;
         font-size: 18px !important;
     }
     
     .step-content {
         padding: 20px !important;
     }
     
     .step-title {
         font-size: 20px !important;
     }
     
     .step-description {
         font-size: 14px !important;
     }
 }

/* ============================================
   SERVICE BANNER — overlay for stronger contrast
   ============================================ */

.service-banner-area {
  padding-top: 280px !important;
  padding-bottom: 96px !important;
}

.service-banner-wrap {
  display: flex !important;
  grid-template-columns: none !important;
  grid-column-gap: 0 !important;
  grid-row-gap: 0 !important;
}

.service-banner-panel {
  margin-left: auto; /* anchor to the right in RTL layouts */
  max-width: 720px;
  padding: 34px 34px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.service-banner-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.service-banner-panel .heading-two {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  line-height: 1.18 !important;
}

.service-banner-panel .section-content {
  margin: 0 !important;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.9 !important;
}

.banner-img-wrap {
  position: absolute;
  inset: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.01); /* tiny scale to avoid edge gaps */
}

.banner-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* premium overlay: dark -> transparent + subtle green energy */
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(107, 203, 61, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.18) 100%);
  opacity: 1;
}

@media (max-width: 991px) {
  .service-banner-area {
    padding-top: 240px !important;
  }
  .service-banner-panel {
    max-width: 640px;
    padding: 28px 26px;
  }
}

@media (max-width: 768px) {
  .service-banner-area {
    padding-top: 210px !important;
    padding-bottom: 72px !important;
  }
  .service-banner-panel {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 18px;
  }
  .service-banner-panel .section-content {
    max-width: 100%;
  }
}


/* ============================================
   SERVICE CARDS (V2) — Premium gradient layout
   ============================================ */

.services-page {
  padding-top: var(--_sizes---space--space-80);
  padding-bottom: var(--_sizes---space--space-40);
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 24px; /* 22–28px */
}

.service-card {
  --card-radius: 22px;
  --card-pad: 52px;

  border-radius: var(--card-radius);
  padding: var(--card-pad);
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.25), transparent);
  opacity: 0.75;
}

.service-content,
.service-visual {
  position: relative;
  z-index: 2;
}

.service-content {
  text-align: right;
  direction: rtl;
}

.service-card-title {
  margin: 0 0 12px 0;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.service-card-desc {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.85;
}

.service-more {
  margin-top: 18px;
}

/* Remove default marker + make summary act like a button */
.service-more > summary {
  list-style: none;
}
.service-more > summary::-webkit-details-marker {
  display: none;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  gap: 10px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-btn-open {
  display: inline;
}

.service-btn-close {
  display: none;
  align-items: center;
  gap: 8px;
}

.service-btn-close-icon {
  display: block;
  width: 18px;
  height: 18px;
}

details.service-more[open] > .service-btn .service-btn-open {
  display: none;
}

details.service-more[open] > .service-btn .service-btn-close {
  display: inline-flex;
}

.service-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.service-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

.service-more-body {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.9;
  max-width: 560px;
}

.service-more-body p {
  margin: 0 0 12px;
}

.service-more-body p:last-child {
  margin-bottom: 0;
}

.service-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 220px;
  isolation: isolate; /* keep watermark behind image within this stacking context */
}

.service-image {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
  border-radius: 18px; /* rounded rectangle frame */
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.service-watermark {
  position: absolute;
  bottom: -52px;
  right: -18px;
  left: auto;
  font-size: 132px;
  opacity: 0.14;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.22);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  text-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1; /* behind the image (image is z-index:2) */
  transform: rotate(-8deg);
}

/* Gradient themes */
.theme-1 { background: linear-gradient(135deg, #2f3f2d, #4a7b3c); }
.theme-2 { background: linear-gradient(135deg, #2f6d2f, #6bbf4a); }
.theme-3 { background: linear-gradient(135deg, #2a4d2a, #5aa23f); }
.theme-4 { background: linear-gradient(135deg, #1f3b1f, #4f8e35); }

/* Mobile rules */
@media (max-width: 768px) {
  .service-card {
    --card-pad: 26px;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .service-card-title {
    font-size: 22px;
  }

  .service-card-desc {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.8;
  }

  .service-visual {
    min-height: 180px;
  }

  .service-watermark {
    display: none;
  }
}

/* ============================================
   PROCESS CONFIDENCE (V2) — calm premium grid
   ============================================ */

.process-confidence-area {
  background: #ffffff !important;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  direction: rtl;
}

.confidence-card {
  position: relative;
  border-radius: 18px;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.0));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.confidence-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 20% 0%, rgba(107,203,61,0.14), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.confidence-card > * {
  position: relative;
  z-index: 1;
}

.confidence-card:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 203, 61, 0.22);
  box-shadow: 0 16px 46px rgba(0,0,0,0.10);
}

.confidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.confidence-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 203, 61, 0.12);
  color: rgba(40, 40, 40, 1);
  border: 1px solid rgba(107, 203, 61, 0.22);
}

.confidence-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.confidence-chip-number {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(40, 40, 40, 1);
}

.confidence-chip-label {
  font-size: 13px;
  color: rgba(60, 60, 60, 0.75);
}

.confidence-title {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 750;
  color: rgba(40, 40, 40, 1);
  letter-spacing: -0.01em;
}

.confidence-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(60, 60, 60, 0.82);
}

/* Subtle reveal (optional) */
.confidence-card {
  opacity: 1;
  transform: translateY(0);
}

.confidence-card.is-revealing {
  opacity: 0;
  transform: translateY(10px);
}

.confidence-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (max-width: 768px) {
  .confidence-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .confidence-card {
    padding: 22px 18px;
  }
  .confidence-title {
    font-size: 18px;
  }
  .confidence-text {
    font-size: 13px;
  }
}