/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 15 2025 | 19:06:38 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
.step-title {
    color: #fff !important;
}
          .workflow-container {
          position: relative;
          width: 90%;
          height: 145vh !important;
          margin: 0 auto;
          max-width: 100%;
          padding: 0 60px;
          }



          :root {
          --primary-color: #ffd700;
          --secondary-color: #555555;
          --accent-color: #ffed4e;
          --text-color: #fff;
          --bg-color: #1a1a1a;
          --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          --border-radius: 20px;
          --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          }

          /* Performance optimizations for mobile */
          @media (max-width: 768px) {
          * {
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          -webkit-transform: translateZ(0);
          transform: translateZ(0);
          }

          .step {
          will-change: auto;
          }

          .step-number {
          will-change: auto;
          }

          .step-title, .step-description {
          will-change: auto;
          }
          }

          /* Reduce motion for users who prefer it */
          @media (prefers-reduced-motion: reduce) {
          *, *::before, *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
          }
          }

          .container {
          width: 100%;
          max-width: 100%;
		 padding-bottom: 200px;
          }

          .header {
          text-align: center;
          margin-bottom: 60px;
          }

          .subtitle {
          color: #ffd700;
          font-size: 14px;
          letter-spacing: 3px;
          font-weight: 500;
          margin-bottom: 20px;
          text-transform: uppercase;
          }

        
          /* Curved dotted path */
          .curved-path {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          }

          .curved-path svg {
          width: 100%;
          height: 100%;
          }

          .dotted-path {
          fill: none;
          stroke: #555;
          stroke-width: 1px;
          stroke-dasharray: 5, 8;
          stroke-linecap: round;
          }

          /* Step boxes */
          .step {
          position: absolute;
          width: 420px;
          /* border-radius: 20px; */
          padding: 0;
          cursor: pointer;
          transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          /* border: 2px solid rgba(255, 215, 0, 0.1); */
          backdrop-filter: blur(15px);
          z-index: 2;
          /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
          margin-top: 20px;
          margin-bottom: 20px;
          }

          .step::before {
          content: '';
          position: absolute;
          top: -3px;
          left: -3px;
          right: -3px;
          bottom: -3px;
          /* background: linear-gradient(135deg, #ffd700, #ffed4e, #ffc107, #ffd700); */
          border-radius: 23px;
          z-index: -1;
          opacity: 0;
          transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          background-size: 300% 300%;
          animation: gradientShiftSmooth 4s ease-in-out infinite;
          }

          @keyframes gradientShiftSmooth {
          0%, 100% { 
          background-position: 0% 50%;
          transform: rotate(0deg);
          }
          50% { 
          background-position: 100% 50%;
          transform: rotate(1deg);
          }
          }

          .step:hover::before {
          opacity: 1;
          transform: scale(1.05);
          }

          .step:hover {
          transform: translateY(-10px) scale(1.05) rotate(0deg);
          /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2); */
          /* border-color: rgba(255, 215, 0, 0.4); */
          }

          /* .step-image {
          width: 100%;
          height: 180px;
          border-radius: 17px 17px 0 0;
          object-fit: cover;
          transition: transform 0.3s ease;
          filter: brightness(0.9) contrast(1.1);
          } */

          .step:hover .step-image {
          transform: scale(1.1);
          filter: brightness(1.1) contrast(1.2) saturate(1.1);
          }

          .step-content {
          padding: 25px;
          position: relative;
          text-align: center;
          }

          .step-number {
          position: absolute;
          top: -80px;
          left: -10px;
          font-size: 140px;
          font-weight: 900;
          color: transparent;
          -webkit-text-stroke: 4px #ffd700;
          text-stroke: 4px #ffd700;
          /* z-index: 1; */
          transition: all 0.6s ease-in-out;
          transform-origin: center;
          filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
          }
          .step-image {
          width: 70%;
          height: 180px;
          border-radius: 17px 17px 0 0;
          object-fit: cover;
          transition: transform 0.3s ease;
          filter: brightness(0.9) contrast(1.1);
          margin: auto;
          max-width: 100%;
          display: block;
          }

          .step-number::after {
          content: '';
          position: absolute;
          top: 50%;
          left: 100%;
          width: 0;
          height: 2px;
          background: repeating-linear-gradient(to right, #ffd700 0, #ffd700 4px, transparent 4px, transparent 8px);
          transition: width 0.6s ease-in-out;
          }
          .step-3 {
          top: 450px;
          left: 100px;
          }
          .step-4 {
          top: 85%;
          bottom: auto;
          }
          .step:hover .step-number {
          transform: translateX(-70px);
          -webkit-text-stroke: 4px #ffed4e;
          text-stroke: 4px #ffed4e;
          filter: drop-shadow(0 0 40px #ffd700);
          color: rgba(255, 215, 0, 0.1);
          }

          .step:hover .step-number::after {
          width: 50px;
          }

          .step-title {
          font-size: 26px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 15px;
          transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          letter-spacing: 0.5px;
          position: relative;
          }

          /* .step-title::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 50%;
          width: 0;
          height: 2px;
          background-color: #ffd700;
          transition: all 0.3s ease;
          transform: translateX(-50%);
          } */

          .step:hover .step-title {
          color: #ffd700;
          transform: translateY(-3px);
          /* text-shadow: 0 0 25px rgba(255, 215, 0, 0.6); */
          }

          .step:hover .step-title::after {
          width: 100%;
          }

          .step-description {
          font-size: 15px;
          line-height: 1.7;
          color: #bbb;
          transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          letter-spacing: 0.3px;
          }

          .step:hover .step-description {
          color: #fff;
          transform: translateY(-2px);
          }

          /* Step positions */
          .step-1 { top: 60px; left: 100px; }
          .step-2 { top: 200px; right: 100px; }
          .step-3 {
          top: 620px;
          left: 100px;
          }    .step-4 { bottom: 60px; right: 100px; }

          /* Enhanced Mobile Responsiveness */
          /* Large tablets and small laptops */
          @media (max-width: 1200px) {
          .workflow-container {
          padding: 30px 40px;
          }
          .step {
          width: 380px;
          }
          .step-number {
          font-size: 120px;
          top: -70px;
          }
          .step-title {
          font-size: 24px;
          }
          .step-description {
          font-size: 14px;
          }
          }

          /* Tablets */
          @media (max-width: 1024px) {
          .container {
          padding: 30px 20px;
          }
          .header {
          margin-bottom: 40px;
          }
          .title {
          font-size: 40px;
          }
          .subtitle {
          font-size: 13px;
          }
          .workflow-container {
          height: auto;
          padding: 20px 15px;
          min-height: 120vh;
          }
          .step {
          width: 100%;
          max-width: 350px;
          margin: 30px auto;
          position: relative;
          display: block;
          cursor: default;
          }
          .step-1, .step-2, .step-3, .step-4 {
          position: relative;
          top: auto !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          }
          .step-number {
          position: relative;
          top: -15px;
          left: 0;
          text-align: center;
          font-size: 70px;
          -webkit-text-stroke: 3px #ffd700;
          text-stroke: 3px #ffd700;
          }
          .step-content {
          padding: 20px;
          }
          .step-title {
          font-size: 22px;
          margin-bottom: 12px;
          }
          .step-description {
          font-size: 14px;
          line-height: 1.6;
          }
          .step-image {
          width: 80%;
          height: 160px;
          }

          /* Disable hover effects on touch devices */
          .step:hover {
          transform: none;
          }
          .step:hover .step-number {
          transform: none;
          -webkit-text-stroke: 3px #ffd700;
          text-stroke: 3px #ffd700;
          }
          .step:hover .step-number::after {
          width: 0;
          }
          .step:hover .step-title {
          color: #fff;
          transform: none;
          }
          .step:hover .step-description {
          color: #bbb;
          transform: none;
          }
          }

          /* Small tablets and large phones */
          @media (max-width: 768px) {
          .container {
          padding: 25px 15px;
          }
          .header {
          margin-bottom: 35px;
          text-align: center;
          }
          .title {
          font-size: 32px;
          line-height: 1.2;
          }
          .subtitle {
          font-size: 12px;
          margin-bottom: 15px;
          }
          .workflow-container {
          padding: 15px 10px;
          min-height: 100vh;
          }
          .step {
          width: 100%;
          max-width: 320px;
          margin: 25px auto;
          }
          .step-number {
          font-size: 60px;
          top: -12px;
          -webkit-text-stroke: 2px #ffd700;
          text-stroke: 2px #ffd700;
          }
          .step-content {
          padding: 18px;
          }
          .step-title {
          font-size: 20px;
          margin-bottom: 10px;
          }
          .step-description {
          font-size: 13px;
          line-height: 1.5;
          }
          .step-image {
          width: 85%;
          height: 140px;
          }
          }

          /* Mobile phones */
          @media (max-width: 480px) {
          .container {
          padding: 20px 10px;
          }
          .header {
          margin-bottom: 30px;
          }
          .title {
          font-size: 28px;
          line-height: 1.1;
          }
          .subtitle {
          font-size: 11px;
          margin-bottom: 12px;
          letter-spacing: 2px;
          }
          .workflow-container {
          padding: 10px 5px;
          min-height: 90vh;
          }
          .step {
          width: 100%;
          max-width: 300px;
          margin: 20px auto;
          border-radius: 15px;
          }
          .step-number {
          font-size: 50px;
          top: -10px;
          -webkit-text-stroke: 2px #ffd700;
          text-stroke: 2px #ffd700;
          }
          .step-content {
          padding: 15px;
          }
          .step-title {
          font-size: 18px;
          margin-bottom: 8px;
          letter-spacing: 0.3px;
          }
          .step-description {
          font-size: 12px;
          line-height: 1.4;
          letter-spacing: 0.2px;
          }
          .step-image {
          width: 90%;
          height: 120px;
          border-radius: 12px 12px 0 0;
          }
          }

          /* Small mobile phones */
          @media (max-width: 360px) {
          .container {
          padding: 15px 8px;
          }
          .title {
          font-size: 24px;
          }
          .subtitle {
          font-size: 10px;
          }
          .workflow-container {
          padding: 8px 3px;
          }
          .step {
          max-width: 280px;
          margin: 15px auto;
          }
          .step-number {
          font-size: 45px;
          top: -8px;
          }
          .step-content {
          padding: 12px;
          }
          .step-title {
          font-size: 16px;
          }
          .step-description {
          font-size: 11px;
          }
          .step-image {
          width: 95%;
          height: 100px;
          }
          }

          /* Landscape orientation for mobile */
          @media (max-height: 500px) and (orientation: landscape) {
          .workflow-container {
          height: auto;
          min-height: 70vh;
          padding: 15px 10px;
          }
          .step {
          width: 45%;
          max-width: none;
          margin: 10px;
          display: inline-block;
          vertical-align: top;
          }
          .step-number {
          font-size: 40px;
          top: -8px;
          }
          .step-content {
          padding: 10px;
          }
          .step-title {
          font-size: 16px;
          }
          .step-description {
          font-size: 11px;
          }
          .step-image {
          height: 80px;
          }
          }

          /* Touch device optimizations */
          @media (hover: none) and (pointer: coarse) {
          .step {
          cursor: default;
          }
          .step:hover {
          transform: none;
          }
          .step:hover::before {
          opacity: 0;
          }
          .step:hover .step-number {
          transform: none;
          -webkit-text-stroke: 2px #ffd700;
          text-stroke: 2px #ffd700;
          filter: none;
          }
          .step:hover .step-title {
          color: #fff;
          transform: none;
          }
          .step:hover .step-description {
          color: #bbb;
          transform: none;
          }
          .step-image:hover {
          transform: none;
          filter: none;
          }
          }

          /* High DPI displays */
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
          .step-number {
          -webkit-text-stroke: 1px #ffd700;
          text-stroke: 1px #ffd700;
          }
          }

          /* Performance optimizations for mobile */
          @media (max-width: 768px) {
          .step::before {
          display: none;
          }
          .step-number::after {
          display: none;
          }
          .step-title::after {
          display: none;
          }
          .dotted-path {
          stroke-width: 2px;
          stroke-dasharray: 8 6;
          }
          }
          /* Decorative vector connectors for workflow */
          .vector-connector {
          position: absolute;
          z-index: 1;
          pointer-events: none;
          user-select: none;
          max-width: 400px;
          width: 30vw;
          height: auto;
          opacity: 0.85;
          }

          /* Animated yellow dot overlays for connectors */
          .dot-anim {
          position: absolute;
          width: 18px;
          height: 18px;
          background: radial-gradient(circle, #ffd700 70%, #ffed4e 100%);
          border-radius: 50%;
          box-shadow: 0 0 18px 6px #ffd70088;
          z-index: 10;
          pointer-events: none;
          /* DEBUG: Make dot always visible, remove opacity: 1 after testing */
          opacity: 1;
          transition: opacity 0.3s;
          }
          .dot-anim-1 { top: 180px; left: 520px; }
          .dot-anim-2 { top: 360px; left: 900px; }
          .dot-anim-3 { top: 720px; left: 600px; }
          .vector-connector-1 {
          top: 118px;
          left: 483px;
          width: 33%;
          max-width: none;
          transform: rotate(8deg);
          }
          .vector-connector-2 {
          top: 33%;
          left: 15%;
          width: 100%;
          max-width: none;
          /* transform: rotate(10deg) scaleX(-1); */
          }
          .vector-connector-3 {
          top: 80%;
          left: 32%;
          width: 46%;
          max-width: none;
          transform: rotate(3deg);
          }
          /* Enhanced vector connector responsiveness */
          @media (max-width: 1200px) {
          .vector-connector-1 {
          top: 100px;
          left: 38vw;
          width: 18vw;
          }
          .vector-connector-2 {
          top: 300px;
          left: 48vw;
          width: 20vw;
          }
          .vector-connector-3 {
          top: 520px;
          left: 40vw;
          width: 16vw;
          }
          }

          @media (max-width: 900px) {
          .vector-connector {
          display: none;
          }
          .dot-anim {
          display: none;
          }
          }

          /* Mobile-specific vector connector adjustments */
          @media (max-width: 768px) {
          .vector-connector-1 {
          top: 80px;
          left: 35vw;
          width: 20vw;
          }
          .vector-connector-2 {
          top: 250px;
          left: 45vw;
          width: 25vw;
          }
          .vector-connector-3 {
          top: 450px;
          left: 38vw;
          width: 18vw;
          }
          }

          @media (max-width: 480px) {
          .vector-connector-1 {
          top: 60px;
          left: 30vw;
          width: 25vw;
          }
          .vector-connector-2 {
          top: 200px;
          left: 40vw;
          width: 30vw;
          }
          .vector-connector-3 {
          top: 380px;
          left: 35vw;
          width: 20vw;
          }
          }
          @keyframes moveDot1 {
          0%   { top: 180px; left: 520px; }
          100% { top: 220px; left: 900px; }
          }
          @keyframes moveDot2 {
          0%   { top: 36%; left: 23%; }
          100% { top: 50%; left: 70%; }
          }
          @keyframes moveDot3 {
          0%   { top: 80%; left: 34%; }
          100% { top: 90%; left: 60%; }
          }


/* Animated yellow dot overlays for connectors */
.dot-anim {
 position: absolute;
 width: 18px;
 height: 18px;
 background: radial-gradient(circle, #ffd700 70%, #ffed4e 100%);
 border-radius: 50%;
 box-shadow: 0 0 18px 6px #ffd70088;
 z-index: 10;
 pointer-events: none;
 opacity: 1;
 transition: opacity 0.3s;
}
.dot-anim-1 { top: 180px; left: 520px; }
.dot-anim-2 { top: 360px; left: 900px; }
.dot-anim-3 { top: 720px; left: 600px; }
.dot-anim-4 { top: 85%; left: 32%; }
@keyframes moveDot1 {
 0%   { top: 180px; left: 520px; }
 100% { top: 220px; left: 900px; }
}
@keyframes moveDot2 {
 0%   { top: 36%; left: 23%; }
 100% { top: 50%; left: 70%; }
}
@keyframes moveDot3 {
 0%   { top: 80%; left: 34%; }
 100% { top: 90%; left: 60%; }
}
@keyframes moveDot4 {
 0%   { top: 85%; left: 32%; }
 100% { top: 95%; left: 60%; }
}