* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385d6;
    --secondary-color: #00b894;
    --accent-color: #fd79a8;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #d63031;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004c99;
    border-color: #004c99;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.calculator-section {
    background: #f8f9fa;
    padding: 80px 0;
  }
  
  .calculator-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px;
  }
  
  .calculator-progress {
    margin-bottom: 40px;
  }
  
  .progress-bar {
    height: 8px;
    background: #dfe6e9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066cc, #00b894);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 14.28%;
  }
  
  .progress-text {
    text-align: center;
    font-weight: 600;
    color: #636e72;
  }
  
  .calculator-step {
    display: none;
  }
  
  .calculator-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .step-title i {
    color: #0066cc;
  }
  
  .step-question {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
  }
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .option-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
  }
  
  .option-card i {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 12px;
    display: block;
  }
  
  .option-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d3436;
  }
  
  .option-card p {
    font-size: 0.9rem;
    color: #636e72;
    margin: 0;
  }
  
  .option-card:hover {
    border-color: #3385d6;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .option-card.selected {
    border-color: #0066cc;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  }
  
  .option-card.small {
    padding: 20px 15px;
  }
  
  .option-card.small i {
    font-size: 2rem;
  }
  
  .option-card.small h4 {
    font-size: 1rem;
  }
  
  .checkbox-card {
    position: relative;
  }
  
  .checkbox-card input[type="checkbox"] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2;
  }
  
  .checkbox-card input[type="checkbox"]:checked {
    accent-color: #0066cc;
  }
  
  .sub-options {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #dfe6e9;
  }
  
  .sub-options.hidden {
    display: none;
  }
  
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    border-color: #3385d6;
    background: #ffffff;
  }
  
  .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .feature-header input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0066cc;
    border-color: #dfe6e9 !important;
  }
  
  .feature-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    flex: 1;
  }
  
  .feature-header i {
    color: #0066cc;
    font-size: 1.3rem;
  }
  
  .complexity-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .complexity-btn {
    flex: 1;
    min-width: 80px;
    padding: 10px 16px;
    background: #ffffff !important;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2d3436 !important;
  }
  
  .complexity-btn:hover {
    border-color: #0066cc;
    background: #f8f9fa;
  }
  
  .complexity-btn.active {
    background: #0066cc !important;
    color: #ffffff !important;
    border-color: #0066cc !important;
  }
  
  .quality-section {
    margin-bottom: 35px;
  }
  
  .quality-section:last-child {
    margin-bottom: 0;
  }
  
  .quality-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .quality-section h4 i {
    color: #0066cc;
  }
  
  .calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .calculator-form .form-group {
    text-align: left;
  }
  
  .calculator-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
  }
  
  .calculator-form label i {
    color: #0066cc;
  }
  
  .calculator-form input,
  .calculator-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  .calculator-form input:focus,
  .calculator-form textarea:focus {
    outline: none;
    border-color: #0066cc;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
    accent-color: #0066cc;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
  }
  
  .calculator-results {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid #dfe6e9;
  }
  
  .calculator-results.hidden {
    display: none;
  }
  
  .results-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #00b894;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  .estimate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .estimate-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #dfe6e9;
  }
  
  .estimate-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .estimate-details {
    flex: 1;
  }
  
  .estimate-details h4 {
    font-size: 0.95rem;
    color: #636e72;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .estimate-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 5px;
  }
  
  .estimate-note {
    font-size: 0.85rem;
    color: #636e72;
  }
  
  .results-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 30px;
    align-items: center;
    }
  
    .results-actions .cta-button {
        width: 100%;
        justify-content: center;
        background: #0066cc !important;
        color: #ffffff !important;
        padding: 10px 20px;
        text-align: center;
    }
  
  .results-actions .secondary-button {
    background: #ffffff !important;
    color: #0066cc !important;
    border: 2px solid #0066cc;
  }
  
  .results-actions .secondary-button:hover {
    background: #0066cc !important;
    color: #ffffff !important;
  }
  
  .calculator-nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #dfe6e9;
  }
  
  .nav-button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #0066cc;
    background: #ffffff !important;
    color: #0066cc !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
  }
  
  .nav-button:hover:not(:disabled) {
    background: #0066cc !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }
  
  .nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .next-button {
    margin-left: auto;
    background: #0066cc !important;
    color: #ffffff !important;
  }
  
  .next-button:hover:not(:disabled) {
    background: #004c99 !important;
  } 
  .mvp-approach .section-header p {
    max-width: 1000px;
  }



#our_approach .startup-section .discovery-bg {
  position: relative;
  padding-bottom: 60px;
}
#our_approach .startup-section .discovery-bg::before {
  content: '';
  position: absolute;
  background: #e8ebff;
  width: calc(100% - 30%);
  height: 100%;
  z-index: -1;
  border-radius: 40px;
}
#our_approach .startup-section:nth-child(even) .discovery-bg::before {right: 0;}
#our_approach .startup-section:nth-child(odd) .discovery-bg::before {left: 0;}
.startup-section {
  padding: 60px 0 38px;
  position: relative;
  margin: 30px 0 60px 0;
}
#our_approach .startup-section .container {
  max-width: 1100px;
}
.cross-sec-img {
  float: right;
}
.discovery-img {
  margin-top: -100px;
}
.Scopin-img {
  margin-top: -111px;
}
.Scopin-img, .discovery-img {
  border-radius: 39px;
  box-shadow: 0 0 20px #a8b1e273;
  width: 100%;
}
.key-element-h2 h2 {
  margin-bottom: 12px;
}
.discovery-h2 h2 {
  color: #000c51;
}
.discovery-p p {
  margin-top: 7px;
}
/***********/
.reasons_tochoose {
  background-color: #1b1b1b;
  padding: 6rem 0;
  margin-top: -1px;
}
.heading2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 3.5vw;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
.reasons_tochoose .para {
  font-size: 22px;
  line-height: 1.7;
  margin: 30px 0;
  color: #fff;
}
.process__slider {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-column-gap: 70px;
}
.process__card {
  position: relative;
}
.prcess_num {
  position: absolute;
  left: 0;
  top: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.process-card-info {
  padding-top: 80px;
}
.process__card .heading4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(141,141,141,.5);
}
.process-card-info .para {
  font-size: 14px;
  margin-bottom: 0;
}



@media (min-width:768px) and (max-width:1023px) {
  .process__slider {
    grid-column-gap: 20px;
  }
}
@media (max-width:767px) {
  .nav-button {
    padding: 8px 18px;
  }
  .process__slider {
    grid-template-columns: 1fr;
  }
  #our_approach .startup-section .discovery-bg::before {
    width: calc(100% - 10%);
    left: 50%;
    transform: translateX(-50%);
  }
  #our_approach .startup-section:nth-child(odd) .discovery-bg::before {
    left: 50%;
  }
  .discovery-img {
    margin-top: -80px;
  }
}
