/* Tablet & Mobile */
@media (max-width: 991px) {
  .mega-menu {
    padding: 30px 20px;
    background: linear-gradient(135deg, #edf3ff 0%, #ffffff 100%);
  }
}

.process-section {
  padding: 80px 20px;

  /* Background Image */
  background-image: url("./images/process-back-img.avif"); /* change image */

  background-size: cover; /* full section cover */
  background-position: center; /* center align */
  background-repeat: no-repeat; /* no repeat */

  position: relative;
  z-index: 1;
}

/* Optional: Overlay for better readability */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head strong {
  color: var(--primary-blue);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* Grid and Connector */
.proc-navigation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}

/* The Connecting Line */
.proc-navigation::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: #d0d6de;
  color: #0061ff;
  z-index: 0;
}

.proc-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.proc-icon-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.proc-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #999;
 fill: none;
 transition: all .3s ease;
}

/* .proc-card:hover .proc-icon-circle {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
} */
.proc-card:hover .proc-icon-circle svg {
  stroke: var(--primary-blue);
}
/* Active State */
.proc-card.active .proc-icon-circle {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 10px 20px rgba(37, 132, 244, 0.15);
}

.proc-card.active svg {
  stroke: var(--primary-blue);
}

.proc-card.active .proc-label {
  color: var(--primary-blue);
  font-weight: 700;
}

.proc-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

/* Detail Panels */
.proc-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  min-height: 200px;
}

.proc-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  animation: fadeIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.proc-panel.active {
  display: flex;
  gap: 30px;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  font-size: 16px;
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
  .proc-navigation::before {
    display: none;
  }

  .proc-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .proc-panel.active {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width:480px){
    .section-head h2{
        font-size:28px;
    }
}
@media (max-width:768px) {

  .proc-navigation{
      grid-template-columns: repeat(2,1fr);
      gap:20px;
  }

  .proc-navigation::before,
  .proc-navigation::after{
      display:none;
  }

  .proc-icon-circle{
      width:80px;
      height:80px;
  }

  .proc-label{
      font-size:14px;
  }

  .proc-panel.active{
      flex-direction:column;
      text-align:center;
      padding:25px;
  }
}

.proc-icon-circle{
    color:#999;
}

.proc-card.active .proc-icon-circle{
    color:var(--primary-blue);
}

.proc-card:hover .proc-icon-circle{
    color:var(--primary-blue);
}

.proc-icon-circle svg{
    width:28px;
    height:28px;
    display:block;
}

.proc-icon-circle svg *{
    stroke:currentColor;
    fill:none;
}
/* Add this to animate the connecting line color based on progress (Optional/Advanced) */
.proc-navigation::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: var(--progress-width, 0%);
  height: 2px;
  background: var(--primary-blue);
  z-index: 0;
  transition: width 0.5s ease;
}

@media (max-width: 850px) {
  .proc-navigation::after {
    display: none;
  }
}
.section-description {
  max-width: 800px; /* Prevents lines from being too long to read */
  margin: 20px auto 0; /* Centers the block */
  font-size: 16px;
  line-height: 1.8; /* Improves readability */
  color: rgb(23, 23, 24);
  text-align: center;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .section-description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px; /* Ensures text doesn't touch screen edges */
  }
}

/* Optional: Add a subtle hover effect for the cards */

/* Mobile Navbar */
@media (max-width: 991.98px) {

  /* Hide left intro box */
  .mega-menu .industry-box,
  .mega-menu span {
    display: none !important;
  }

  .mega-menu .row > .col-lg-3:first-child {
    display: none !important;
  }

  /* Full width columns */
  .mega-menu .col-lg-2,
  .mega-menu .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Remove Bootstrap gutter */
  .mega-menu .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    row-gap: 0 !important;
  }

  /* Compact links */
  .mega-menu a {
    display: block;
    padding: 6px 0 !important;
    margin: 0 !important;
  }

  /* Remove mt-3 from Career & Contact */
  .mega-menu .mt-3 {
    margin-top: 0 !important;
  }

  /* Compact menu padding */
  .mega-menu {
    padding: 12px 15px !important;
  }
}
@media (max-width: 991.98px) {

  .navbar .ms-auto.d-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
    margin-top: 15px;
  }


  .contact-btn-1 {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 991.98px) {

  .navbar .ms-auto {
    margin-left: 0 !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-trigger-btn {
    width: auto !important;
    padding: 0 !important;
    margin: 0 0 15px 24px !important; /* menu items ke left alignment ke hisab se */
    justify-content: flex-start !important;
    text-align: left !important;
    background: transparent;
    border: 0;
  }

  .search-label {
    display: none !important;
  }

  .contact-btn-1 {
    width: 100%;
  }
}
/* Optional: Add a subtle hover effect for the cards */
@media (max-width: 768px) {
  .tekniko-hero-banner {
    padding: 60px 20px;
    min-height: 300px;
   margin:20px
  }
}
.tekniko-modal-content {
    max-height: 95vh;
    margin: 14px;
  }

  