.smp-toggle-container {
    display: inline-flex;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 4px;
    margin-top: -15px;
}

.smp-toggle-btn {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 40px;
    font-weight: 400;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.smp-toggle-btn.active#withBtn {
    background: #0578af;
    color: white;
}

.smp-toggle-btn.active#withoutBtn {
    background: #f28c38;
    color: white;
}

.smp-without {
    /* background: #f5f5f5; */
    display: none;
}

.smp-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.smp-feature {
    background: white;
    border-radius: 15px;
    padding: 25px;
    transition: background 0.3s ease;
     border: 1px solid rgba(5, 120, 175, 0.15); 
}

/* .smp-with .smp-feature:hover {
    background: linear-gradient(90deg, rgba(5, 120, 175, 0.1), rgba(5, 120, 175, 0.05));
}

.smp-without .smp-feature:hover {
    background: linear-gradient(90deg, rgba(242, 140, 56, 0.1), rgba(242, 140, 56, 0.05));
} */

.smp-with .smp-feature-icon {
    color: #0578af;
}

.smp-without .smp-feature-icon {
    color: #f28c38;
}

.smp-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.smp-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    padding: 5px;
    border-radius: 5px;
}

.smp-feature-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .smp-features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
     .smp-toggle-btn {
        
        font-size: 36px;
    }
        
    .smp-features-container {
        grid-template-columns: 1fr;
    }
    
    .smp-feature-icon {
        font-size: 2rem;
    }
} 


/* button change */

.smp-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  /* font-size: px; */
  /* font-weight: 600; */
  flex-wrap: wrap;
}

.smp-toggle-text {
  color: #0578af;
  transition: color 0.3s ease;
  min-width: 60px;
}

.smp-toggle-button {
  width: 60px;
  height: 32px;
  background-color: #0578af;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.smp-toggle-circle {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.3s ease;
}

.smp-toggle-button.active {
  background-color: #f28c38;
}

.smp-toggle-button.active .smp-toggle-circle {
  left: 32px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .smp-toggle-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .smp-toggle-text {
   
    font-weight: 600;
    min-width: auto;
  }

  
}

@media (max-width: 480px) {
  .smp-toggle-button {
    width: 46px;
    height: 26px;
  }

  .smp-toggle-circle {
    width: 18px;
    height: 18px;
    top: 4px;
    left: 4px;
  }

  .smp-toggle-button.active .smp-toggle-circle {
    left: 24px;
  }
}










.sk-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem); /* Responsive clamp */
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.sk-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  border-radius: 3px;
}

.sk-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  max-width: min(700px, 90%);
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.sk-timeline {
  position: relative;
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
}

/* Center line */
.sk-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: linear-gradient(to bottom, #3498db, #9b59b6);
  border-radius: 2px;
  z-index: 1;
}

.sk-timeline-steps {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.sk-step {
  width: 50%;
  padding: 20px 40px;
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-sizing: border-box;
}

.sk-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.sk-step:nth-child(odd) {
  left: 0;
  padding-right: 60px;
}

.sk-step:nth-child(even) {
  left: 50%;
  padding-left: 60px;
}

.sk-step::after {
  content: '';
  position: absolute;
  top: 40px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 4px solid #3498db;
  z-index: 3;
  box-shadow: 0 0 0 8px rgba(52, 152, 219, 0.2);
}

.sk-step:nth-child(odd)::after {
  right: -12px;
}

.sk-step:nth-child(even)::after {
  left: -12px;
}

/* Connector lines */
.sk-step::before {
  content: '';
  position: absolute;
  top: 52px;
  height: 2px;
  /* background: linear-gradient(to right, #3498db, #9b59b6); */
  z-index: 2;
}

.sk-step:nth-child(odd)::before {
  right: 0;
  width: 40px;
}

.sk-step:nth-child(even)::before {
  left: 0;
  width: 40px;
}

.sk-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(52, 152, 219, 0.1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.sk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
}

.sk-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex: 0 0 auto;
}

.sk-icon-container {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sk-blue-gradient {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.sk-purple-gradient {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.sk-red-gradient {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.sk-orange-gradient {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.sk-teal-gradient {
  background: linear-gradient(135deg, #1abc9c, #16a085);
}

.sk-step-title {
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.sk-step-content {
  color: #7f8c8d;
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
  margin-bottom: 15px;
  font-size: 1rem;
}

.sk-step-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
}

.sk-step-tag {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .sk-timeline::before {
    left: 60px;
  }
  
  .sk-step {
    width: 100%;
    padding: 20px 0 20px 100px;
    left: 0 !important;
    margin-bottom: 40px;
  }
  
  .sk-step:nth-child(even) {
    padding-left: 100px;
  }
  
  .sk-step::after {
    left: 48px !important;
    right: auto !important;
  }
  
  .sk-step::before {
    left: 60px !important;
    width: 2px;
    height: 100%;
    top: 52px;
  }
  
  .sk-icon-container {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .sk-card {
    min-height: 200px;
    padding: 25px;
  }
  .sk-timeline-steps {
    display: flex;
    flex-direction: column;
  }

  .sk-step {
    display: flex;
    flex-direction: column;
  }

  .sk-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .sk-title {
    font-size: 2.2rem;
  }
  
  .sk-subtitle {
    font-size: 1.1rem;
  }
  
  .sk-step-title {
    font-size: 1.3rem;
  }
  
  .sk-step-content {
    font-size: 0.95rem;
  }
  
  .sk-timeline::before {
    left: 40px;
  }
  
  .sk-step {
    padding: 20px 0 20px 80px;
  }
  
  .sk-step:nth-child(even) {
    padding-left: 80px;
  }
  
  .sk-step::after {
    left: 28px !important;
  }
  
  .sk-step::before {
    left: 40px !important;
  }
}

@media (max-width: 576px) {
  .sk-step {
    padding: 15px 0 15px 70px;
    margin-bottom: 30px;
  }
  
  .sk-step:nth-child(even) {
    padding-left: 70px;
  }
  
  .sk-card {
    min-height: 150px;
    padding: 20px;
  }
  
  .sk-step-content {
    font-size: 0.9rem;
  }
  
  .sk-step-tag {
    font-size: 0.8rem;
  }
  
  .sk-timeline::before {
    left: 30px;
  }
  
  .sk-step::after {
    left: 18px !important;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
  
  .sk-step::before {
    left: 30px !important;
  }
  
  .sk-icon-container {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
} 

@media screen  and (max-width:991px) {
  .sk-card{
    width: 800px;
  }
}

@media screen  and (max-width:940px) {
  .sk-card{
    width: 720px;
  }
}

@media screen  and (max-width:880px) {
  .sk-card{
    width: 660px;
  }
}

@media screen  and (max-width:800px) {
  .sk-card{
    width: 620px;
  }
}

@media screen  and (max-width:755px) {
  .sk-card{
    width: 580px;
  }
}

@media screen  and (max-width:700px) {
  .sk-card{
    width: 500px;
  }
}

@media screen  and (max-width:620px) {
  .sk-card{
    width: 430px;
  }
}

@media screen  and (max-width:560px) {
  .sk-card{
    width: 410px;
  }
}

@media screen  and (max-width:515px) {
  .sk-card{
    width: 380px;
  }
}

@media screen  and (max-width:498px) {
  .sk-card{
    width: 340px;
  }
}

@media screen  and (max-width:450px) {
  .sk-card{
    width: 300px;
  }
}

@media screen  and (max-width:415px) {
  .sk-card{
    width: 260px;
  }
}

@media screen  and (max-width:375px) {
  .sk-card{
    width: 210px;
  }
}


@media screen  and (max-width:455px) {
  .lkfontheight{
    font-size: 19px;
  }
  .lkfontheight-1{
    font-size: 14px;
  }
}

@media screen  and (max-width:380px) {
  .lkfontheight{
    font-size: 15px;
  }
}