/* Pricing Packages Styles - Exact from LP Page */

/* Packages Section */
section.packages {
    padding: 100px 0;
}

.packages .container::before {
    position: absolute;
    content: "";
    max-width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
}

.max-pack {
    max-width: 1200px;
}

.custom-cont {
    margin: 0 auto;
}

.red-table-heading {
    color: #000;
    text-align: center;
        font-size: 40px;
}

/* Filing Tabs - Exact from LP */
.filing-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 34px;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
    padding: 0;
}

.filing-tabs-nav li {
    flex: 1 1 0;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1.5px solid #d00046;
    color: #111111;
    font-size: clamp(13px, 1.2vw, 17px);
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
}

.filing-tabs-nav li:hover,
.filing-tabs-nav li.active {
    background: #d00046;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(208, 0, 70, 0.25);
}

.filing-tab-pane {
    display: none;
}

.filing-tab-pane.active {
    display: block;
    animation: filingFade 0.4s ease;
}

@keyframes filingFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.filing-tab-pane .tab-desc {
    margin: 0 auto 34px;
}

.filing-tab-pane .tab-desc h2 {
    margin-bottom: 10px;
    color: #000;
    line-height: 1.3;
    font-size:40px;
}

/* Process Step Cards */
.myprocessslide {
    margin-bottom: 40px;
}

.process-box {
    background: #ffffff;
    border: 1px solid #e8e8ee;
    border-radius: 12px;
    padding: 34px 26px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.process-box .icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border: 1.5px solid #e3e3ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.process-box .icon-box img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.process-box h4 {
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.35;
}

.process-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.filing-tab-pane .tab-desc p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 0;
}

/* Federal Package Cards - Exact from LP */
.federal-mn {
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 10px;
    border: 0.6px solid #0e101a;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
   
}

.fed-head {
    padding: 30px 0px 0px;
}

.fed-head h2 {
    font-size: 32px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d00046;
}

.federtxt {
    padding: 0px 10px 20px;
}
.federtxt ul{
        height: 350px;
    overflow-y: scroll;
}
.federtxt li h6 {
    margin-bottom: 6px;
}

.federtxt li p {
    margin-bottom: 20px;
}

.federal-mn span {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.federal-mnt span {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
}

.federal-mnt p {
    color: #fff;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
    text-align: left;
    /* height: 350px;
    overflow-y: scroll; */
}

.pricing-bullet {
    width: 22px;
    height: 22px;
}

.federal-mn .theme-btn {
    font-size: 14px;
}

/* Button Styling - Exact from LP */
.theme-btn {
    background: #d00046;
    padding: 12px 30px;
    display: flex;
    font-family: "Manrope", sans-serif;
    color: #fff;
    position: relative;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    border: 2px solid transparent;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
}

.theme-btn.outlined_btn {
    background: transparent;
    border: 2px solid #d00046;
    color: #d00046;
}

.theme-btn i {
    margin-right: 10px;
}

.theme-btn:hover {
    color: #d00046 !important;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #d00046 !important;
    text-decoration: none;
}

.btn-purp {
    width: 220px;
}

/* Responsive - Exact from LP */
@media (max-width: 767px) {
    .filing-tabs-nav li {
        padding: 11px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}