@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
:root{
    /* --font-family1:Lato, sans-serif; */
    /* --font-family1:'Open Sans', sans-serif; */ /* jile iron color */
    /*--color7:#141618;*//* old footer*//* copywrite *//* envision *//* elobrate */ /* plan *//* measure *//*dark jile color*/
}

.content1 {
     -webkit-box-flex: 1;
         -ms-flex: 1 1 auto;
             flex: 1 1 auto;
     padding: 24px 30px 30px;
     max-width: 960px;
     min-height: 12vh;
   }
   @media(max-width:1300px) {
    .content1 {
    
     padding: 24px 0px 30px;
     max-width: 800px;
     
   }
}
.steps-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1200px;
    min-height: 90vh;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .sidebar1 {
    position: -webkit-sticky;
    position: sticky;
    /* top: calc(var(--site-header-height) + 16px); */
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
 
    border-radius: 8px;
    padding: 12px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    overflow: hidden;
    margin-left: 30px;
    top: 155x;
   }
@media (max-width: 1300px) {
    .sidebar1 {
   margin-left:58px;

    }
  }

  @media (min-width:1600px) and (max-width:1919px) {
  }
.steps-sidebar {
    width: 180px;
    background: #f8f8f8;
    border-right: 1px solid #e0e0e0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    gap: 10px;
  }
.step-btn {
    background: #f0f0f0;
    border: none;
    color: black;
    padding: 7px;
    font-size: 15px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
.step-btn:hover {
    background: #d9e8ff;
  }
.step-btn.active {
    background: #31c7b2;
    color:black;
  }
.steps-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
    position: relative;
  }
.step-image-container {
    display: none;
    -webkit-animation: fadeIn 0.4s ease-in-out;
            animation: fadeIn 0.4s ease-in-out;
    position: relative;
  }
.step-image-container.active {
    display: block;
  }
.step-title {
    font-size: 18px;
    font-weight: 600;
    color:black;
    margin-bottom: 21px;
  }
.step-title1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    color:black;
    bottom: -15px;
  }
.image-wrapper {
    position: relative;
    display: inline-block;
  }
.image-wrapper img {
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
.image-wrapper img:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }
.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: none;
  }
.image-wrapper:hover .close-btn {
    display: block;
  }
.zoom-icon i {

font-size: 20px;

color: black;

}
/* 🔍 Zoom icon */
.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    /* background: rgba(0,0,0,0.7); */
    color:black;
    font-size: 18px;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
/* Fullscreen Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    -webkit-animation: fadeIn 0.4s ease-in-out;
            animation: fadeIn 0.4s ease-in-out;
  }
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
  }
@-webkit-keyframes fadeIn {
    from { opacity: 0; -webkit-transform: translateY(5px); transform: translateY(5px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
  }
@keyframes fadeIn {
    from { opacity: 0; -webkit-transform: translateY(5px); transform: translateY(5px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
  }
@media (max-width: 768px) {
    .steps-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .steps-sidebar {
      width: 100%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      overflow-x: auto;
    }
    .step-btn {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
    }
  }
/* hide image container only */
.hidden-image {
    display: none !important;
  }
/*# sourceMappingURL=style-nav-update.css.map */
