   
/* Setup Best Practices */

 .tips-section.redesigned {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 20px;
  background: #f5f9ff;
}

.tip-card {
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 700px;
  width: 100%;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 29px;
  margin-bottom: 20px;
}

.tip-header i {
  font-size: 24px;
  color: #ffc107;
}

.tip-body ul {
  padding-left: 20px;
}

.best-practices-list {
  list-style: none;
  padding-left: 0;
}

.best-practices-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.best-practices-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1ab394 !important;  /* Ensure green shows */
  font-weight: bold;
  font-size: 16px;
  font-family: Arial, sans-serif;  /* Force normal font */
}


.highlight {
  font-weight: 600;
  color: #1a1a1a;
  background-color: #e9f1ff;
  padding: 2px 6px;
  border-radius: 4px;
}


/* Build your Product Catalog */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}


        .feature-card {
            background: white;
            border: 1px solid #e3e6e8;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .feature-title {
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
        }

        .feature-description {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

      .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.feature-row {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
}

.feature-row.center-row {
    justify-content: center;
}
.feature-row .feature-card {
    flex: 1;
}


@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
  }
}

/* build end */

/* tab section */
 .platform-tabs {
            display: flex;
            margin-bottom: 25px;
            border-bottom: 2px solid #e3e6e8;
            background: #f8f9fa;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
        }

        .platform-tab {
            padding: 15px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            color: #666;
            font-weight: 500;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
            background: #f8f9fa;
            font-size: 16px;
        }

        .platform-tab:hover {
            background: #e9ecef;
        }

        .platform-tab.active {
            color: #1ab394;
            border-bottom-color: #1ab394;
            background: white;
        }

        .platform-content {
            display: none;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 0 0 10px 10px;
        }

        .platform-content.active {
            display: block;
        }

/* end tab section  */
    p {
        font-size: 17px;
    }
    .fst{
        font-size: 16px !important;
    }
    .nav-class {
        box-shadow: none !important;
    }
    /* .lh-base{
        line-height: 0.1px;
    } */
     .line{
        line-height: 15px !important;
     }
    
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        color: var(--bs-nav-pills-link-active-color)!important ;
        background-color: #15b198 !important;
    }
    .clr-hlz {
        color: #1ab394!important;
    }

    #Step1,
    #Step2,
    #Step3,
    #Edit-Existing-Quotation,
    #Step4,
    #Step5,
    #Step6
    {
        scroll-margin-top: 100px;
    }
    .scrollable::-webkit-scrollbar {
        width: 12px;
    }

    .content-box:hover {
        box-shadow: 2px 5px 5px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.5s;
    }

    .contact:hover {
        background-color: #1ab394;
        color: white !important;
        border-radius: 5px;
        padding: 5px;
        transition: 0.5s;
    }



    @media only screen and (max-width: 600px) {
        .bg-width {
            position: absolute !important;
        }
        .snackbar-links {
            display: none;
            flex-direction: column;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 250px;
            background-color: rgb(157 158 160 / 81%);
            padding: 20px;
            backdrop-filter: blur(3px);
            overflow: overlay;
        }     
        .lh-1{
            line-height: 2.5px !important;
        }   
    }


     @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .step-header {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .workflow-steps {
                grid-template-columns: 1fr;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .platform-tabs {
                flex-direction: column;
            }
        }

        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
        }

        .action-badge {
            background: #1ab394;
            color: white;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
            margin-left: 8px;
        }

