/* General Section Styling */

.section {

    padding: 60px 0;

    background-color: #f8f9fa;

}



/* Heading */

.section-heading {

    margin-bottom: 40px;

}



.section-heading h2 {

    font-size: 32px;

    font-weight: 700;

    color: #333;

}



/* Tabs */

.tab {

    overflow: hidden;

    border-bottom: 1px solid #ddd;

    display: flex;

    justify-content: center;

    margin-bottom: 20px;

}



.tab button {

    background-color: inherit;

    border: none;

    outline: none;

    cursor: pointer;

    padding: 14px 16px;

    transition: 0.3s;

    font-size: 18px;

    font-weight: bold;

    color: #555;

}



.tab button:hover {

    color: #ffaa17;

}



.tab button.active {

    border-bottom: 3px solid #ffaa17;

    color: #ffaa17;

    transition-delay: 4ms;

}



/* Tab Content */

.tabcontent {

    display: none;

    padding: 20px;

    border-top: none;

}



/* Pricing Plan Cards */

.price-plan-wrapper {

    margin-top: 20px;

}



.single-price-plan {

    background: #fff;

    border: 1px solid #ddd;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    border-radius: 8px;

    transition: all 0.3s ease;

}



.single-price-plan:hover {

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}



.plan-description {

    margin-top: 20px;

}



.plan-features {

    list-style: none;

    padding: 0;

    margin: 0;

}



.plan-features li {

    padding: 10px 10px;

    font-size: 16px;

    color: #555;

    border-top: 1px solid #eee;

    transition: background-color 0.3s ease;

}



.plan-features li:first-child {

    border-top: none;

}



.plan-features li:hover {

    background-color: #f0f0f0;

    cursor: pointer;

}



select {

    width: 100%;

    padding: 10px;

    border-radius: 8px;

    border: 1px solid #ccc;

    font-size: 16px;

    appearance: none;

    outline: none;

    cursor: pointer;

    background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;

}



select:hover,

select:focus {

    border-color: #007BFF;

    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);

}



.iso-process-section {

    background: #ffaa17;

    /* Adjust to match the red background */

    color: #000;

    text-align: center;

    padding: 50px 20px;

}



.iso-process-section h2 {

    font-size: 2em;

    margin-bottom: 10px;

}



.iso-process-section p {

    font-size: 1.2em;

    margin-bottom: 30px;

}



.process-step img {

    width: 50px;

    height: 50px;

    margin-bottom: 10px;

}



.process-step h3 {

    font-size: 1.2em;

    margin: 10px 0;

}



.svg-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 10px;

    fill: currentColor;

    /* Ensures the SVG uses the current text color */

}



.process-step:not(:last-child)::after {

    content: ">";

    color: white;

    font-size: 2em;

    position: absolute;

    right: -25px;

    /* Adjust as needed for spacing */

    top: 50%;

    transform: translateY(-50%);

}



.document-section {

    padding: 40px 0;

    background-color: #fff;

    text-align: center;

}



.document-section h2 {

    font-size: 2rem;

    font-weight: bold;

    margin-bottom: 20px;

}



.document-section .underline {

    width: 60px;

    height: 3px;

    background-color: #ffaa17;

    margin: 0 auto 20px;

}



.document-btn {

    border-radius: 5px;

    background: linear-gradient(to right, #ffaa17, #ffaa17);

    color: #fff;

    font-size: 0.9rem;

    padding: 10px 15px;

    margin: 10px;

    transition: all 0.3s ease;

}



.document-btn:hover {

    background: linear-gradient(to right, #ffaa17, #d98b00);

    color: #fff;

    text-decoration: none;

}

.logo {
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    margin: 10px 0px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.header p {
    color: #555;
    font-size: 18px;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefit-item {
    background-color: #f8f8f8;
    margin: 15px 0;
    padding: 20px;
    border-left: 5px solid #ffaa17;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: #f0f7ff;
}

.benefit-title {
    font-size: 20px;
    color: #ffaa17;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 16px;
    color: #333;
    margin: 0;
}

ul.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.benefits-list li {
    width: 32%;
}


/* Adjustments for mobile */

@media (max-width: 767px) {

    .tab {

        flex-direction: column;

    }



    .tab button {

        padding: 10px;

        text-align: center;

        width: 100%;

        font-size: 16px;

    }



    .single-price-plan {

        margin-bottom: 20px;

    }



    .process-step:not(:last-child)::after {

        content: "";

    }

    .logo {
        width: 40px;
    }

    ul.benefits-list li {
        width: 100%;
    }
}