/* ═══════════════════════════════════════════════════════════════════
   CIRCULAR SLIDER PLUGIN - COMPLETE STYLES
   All circular slider CSS in one place - no Customizer CSS needed!
   ═══════════════════════════════════════════════════════════════════ */

/* Box sizing for all elements */
.circular-process-wrap,
.circular-process-wrap * {
  box-sizing: border-box;
}

/* Container - Base styles for all screens */
.circular-process-wrap {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  color: #111;
  background-image: url("https://rt.uplancer.agency/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-24-at-9.47.47-AM.jpeg");
  background-repeat: no-repeat !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Icon positioning - All screens with circular layout */
.circular-process-wrap .cp-step {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 150px !important;            /* Actual container size (80px icon + text + spacing) */
  margin-left: -75px !important;      /* Half of 150px */
  margin-top: -75px !important;       /* Half of 150px */
  text-align: center !important;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease !important;
  z-index: 10 !important;
}

/* Icon images */
.circular-process-wrap .cp-step .cp-icon img {
  width: 80px !important;
  height: 80px !important;
  display: block !important;
  margin: auto !important;
}

/* Icon labels */
.circular-process-wrap .cp-step span {
  display: block !important;
  margin-top: 10px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #222 !important;
  font-family: 'Poppins' !important;
}

/* Active step - no size change, just opacity */
.circular-process-wrap .cp-step.cp-active {
  opacity: 1 !important;
  z-index: 30 !important;
  margin-left: -75px !important;
  margin-top: -75px !important;
}

/* Keep active icon same size - no scaling */
.circular-process-wrap .cp-step.cp-active .cp-icon img {
  width: 80px !important;
  height: 80px !important;
  transform: none !important;         /* No scale effect */
}

/* Non-active icons - slightly dimmed */
.circular-process-wrap .cp-step:not(.cp-active) {
  opacity: 0.7 !important;
}

/* Center content - Perfect centering on all screens */
.circular-process-wrap .cp-center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 20 !important;
  text-align: center !important;
  margin: 0 !important;
}

/* Center content typography */
.circular-process-wrap .cp-center h2 {
  font-size: 36px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
  color: #111 !important;
  padding-bottom: 0 !important;
}

.circular-process-wrap .cp-center p {
  font-size: 18px !important;
  color: #404040 !important;
}

/* Call to action button */
.circular-process-wrap .cp-btn {
  display: inline-block !important;
  margin-top: 18px !important;
  padding: 12px 28px !important;
  background: #e12f6e !important;
  color: #fff !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  transition: transform 0.2s ease !important;
}

.circular-process-wrap .cp-btn:hover {
  transform: scale(1.05) !important;
}

/* Navigation arrows */
.circular-process-wrap .cp-arrows {
  margin-top: 18px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
}

.circular-process-wrap .cp-arrow {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: transform 0.25s !important;
}

.circular-process-wrap .cp-arrow:hover {
  transform: scale(1.1) !important;
}

.circular-process-wrap .cp-arrow img {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain !important;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS - Optimized cp-center widths for all screens
   ═══════════════════════════════════════════════════════════════════ */

/* Extra Large Desktop (1800px+) */
@media (min-width: 1800px) and (max-width: 2500px) {
  .circular-process-wrap {
    min-height: 880px !important;
    background-size: contain !important;
    background-position: center center !important;
    padding: 80px 20px 60px 20px !important;
  }
  
  .circular-process-wrap .cp-center {
    width: 550px !important;              /* Wider for large screens */
    max-width: 90% !important;
    padding: 15px 50px 25px 50px !important;
  }
  
  .circular-process-wrap .cp-step {
    margin-top: -130px !important;
  }
  
  .circular-process-wrap .cp-step.cp-active {
    margin-top: -130px !important;
  }
}

/* Large Desktop (1400px - 1799px) */
@media (min-width: 1400px) and (max-width: 1799px) {
  .circular-process-wrap {
    min-height: 880px !important;
    background-size: contain !important;
    background-position: center center !important;
    padding: 80px 20px 60px 20px !important;
  }
  
  .circular-process-wrap .cp-center {
    width: 480px !important;              /* Optimized for standard large desktop */
    max-width: 85% !important;
    padding: 12px 45px 22px 45px !important;
  }
  
  .circular-process-wrap .cp-step {
    margin-top: -100px !important;
  }
  
  .circular-process-wrap .cp-step.cp-active {
    margin-top: -100px !important;
  }
}

/* Medium Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .circular-process-wrap {
    min-height: 800px !important;
    background-size: contain !important;
    background-position: center center !important;
    padding: 60px 20px !important;
  }
  
  .circular-process-wrap .cp-center {
    width: 420px !important;              /* Smaller for medium desktop */
    max-width: 80% !important;
    padding: 10px 35px 20px 35px !important;
  }
  
  .circular-process-wrap .cp-center h2 {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  
  .circular-process-wrap .cp-center p {
    font-size: 17px !important;
  }
  
  .circular-process-wrap .cp-step .cp-icon img {
    width: 75px !important;
    height: 75px !important;
  }
  
  .circular-process-wrap .cp-step span {
    font-size: 17px !important;
  }
  
  .circular-process-wrap .cp-step.cp-active .cp-icon img {
    width: 75px !important;
    height: 75px !important;
  }
}

/* Tablet & Small Desktop (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .circular-process-wrap {
    min-height: 750px !important;
    background-size: cover !important;
    background-position: center center !important;
    padding: 50px 20px !important;
  }
  
  .circular-process-wrap .cp-center {
    width: 360px !important;              /* Compact for tablets */
    max-width: 75% !important;
    padding: 10px 30px 18px 30px !important;
  }
  
  .circular-process-wrap .cp-center h2 {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  
  .circular-process-wrap .cp-center p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  
  .circular-process-wrap .cp-step .cp-icon img {
    width: 65px !important;
    height: 65px !important;
  }
  
  .circular-process-wrap .cp-step span {
    font-size: 15px !important;
  }
  
  .circular-process-wrap .cp-step.cp-active .cp-icon img {
    width: 65px !important;
    height: 65px !important;
  }
}

/* Mobile (below 768px) - Vertical Stack */
@media (max-width: 767px) {
  .circular-process-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 300px !important;
    background-size: cover !important;
    background-position: center center !important;
    padding: 40px 20px !important;
  }
  
  /* Hide all non-active icons */
  .circular-process-wrap .cp-step {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    display: none !important;
  }
  
  /* Show only active icon */
  .circular-process-wrap .cp-step.cp-active {
    display: block !important;
    position: static !important;
    margin: 0 0 20px 0 !important;
    text-align: center !important;
    opacity: 1 !important;
  }
  
  .circular-process-wrap .cp-step.cp-active .cp-icon {
    display: flex !important;
    justify-content: center !important;
  }
  
  .circular-process-wrap .cp-step.cp-active .cp-icon img {
    width: 80px !important;
    height: 80px !important;
  }
  
  /* Hide icon label on mobile */
  .circular-process-wrap .cp-step.cp-active span {
    display: none !important;
  }
  
  /* Center content below icon */
  .circular-process-wrap .cp-center {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-top: 20px !important;
  }
  
  .circular-process-wrap .cp-center h2 {
    font-size: 26px !important;
    line-height: 1.3em !important;
  }
  
  .circular-process-wrap .cp-center p {
    font-size: 16px !important;
  }
  
  .circular-process-wrap .cp-icon {
    margin-top: 45px;
  }
}

/* Extra small adjustments for overflow prevention */
.slider_circle_sec.preset--module--divi-section--default.et_pb_section {
  padding-right: 0px !important;
  padding-left: 0px !important;
  overflow-x: hidden !important;
}

.slider_circle_sec .et_pb_row {
  width: 100% !important;
}

/* ═══════════════════════════════════════════════════════════════════
   END OF CIRCULAR SLIDER STYLES
   ═══════════════════════════════════════════════════════════════════ */