.about-page-img {
    max-height: 250px;
    margin-bottom: 20px;
}

.about-page-img img {
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
}

.pricing-style-three-area>p {
    color: #bbbbbb;
}

.pricing-header p {
    color: white;
}

/* services Table styles */

:root {
    --dark: #01273B;
    --theme: #0e3d1f;
    --primary: #004E50;
    --gold: #e2cc00;
    --gold-soft: #f3e98a;
    --paper: #f6f4ec;
    --ink: #0b1f16;
    --muted: #6f7d78;
    --line: rgba(255, 255, 255, 0.14);
    --grad-dark: linear-gradient(150deg, #03150b 0%, #082b18 28%, #0e3d1f 55%, #124d29 78%, #061f12 100%);
}

/* ---------- Global overflow guard ---------- */
html,
body {
    overflow-x: hidden;
}

/* ---------- Hero ---------- */
.hero {
    background: var(--grad-dark);
    color: #fff;
    padding: 90px 24px 70px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 204, 0, 0.18), transparent 70%);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.08;
    max-width: 780px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero p.lede {
    margin-top: 22px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

.hero-tam {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

.hero-meta {
    margin-top: 48px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
}

.hero-meta div {
    flex: 1;
    min-width: 150px;
    padding: 22px 26px 0;
    border-right: 1px solid var(--line);
}

.hero-meta div:last-child {
    border-right: none;
}

.hero-meta strong {
    display: block;
    font-family: 'Forum', serif;
    font-size: 26px;
    color: var(--gold);
}

.hero-meta span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Nav pills ---------- */
.plan-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #e6e2d4;
    padding: 14px 24px;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.plan-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #dfe0d5;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    flex: 0 0 auto;
    transition: all .25s ease;
}

.nav-pill span {
    background: var(--theme);
    color: var(--gold);
    font-size: 20px;
    font-weight: 500;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-pill:hover {
    background: var(--theme);
    color: #fff !important;
    border-color: var(--theme);
}

.nav-pill:hover span {
    background: var(--gold);
    color: var(--ink);
}

/* ---------- Summary cards ---------- */
.summary {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px 20px;
}

.summary h2 {
    font-size: 34px;
    margin-bottom: 6px;
}

.summary>p {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 34px;
}

.sum-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.sum-card {
    background: #fff;
    border: 1px solid #e7e4d6;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sum-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -18px rgba(14, 61, 31, 0.35);
    border-color: var(--theme);
}

.sum-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
}

.sum-card strong {
    font-family: 'Forum', serif;
    font-size: 21px;
    color: var(--dark);
}

.sum-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--theme);
}

.sum-val small {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.sum-meta {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Plan sections ---------- */
.plan-block {
    margin: 60px auto;
    padding: 0 24px;
    scroll-margin-top: 80px;
}

.plan-head {
    background: var(--grad-dark);
    border-radius: 22px;
    padding: 44px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.plan-head::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 204, 0, 0.15), transparent 70%);
}

.plan-num {
    font-family: 'Forum', serif;
    font-size: 70px;
    color: var(--gold);
    opacity: 0.9;
    line-height: 1;
    min-width: 90px;
}

.plan-head-text {
    flex: 1;
    min-width: 260px;
    position: relative;
    z-index: 1;
}

.plan-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink);
    background: var(--gold);
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.plan-head-text h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 8px;
}

.plan-head-text p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 420px;
}

.plan-stats {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.plan-stats .stat {
    text-align: left;
}

.plan-stats strong {
    display: block;
    font-family: 'Forum', serif;
    font-size: 25px;
    color: #fff;
}

.plan-stats .gold strong {
    color: var(--gold);
}

.plan-stats span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
}

.plan-body {
    background: #fff;
    border: 1px solid #e7e4d6;
    border-top: none;
    border-radius: 0 0 22px 22px;
    padding: 44px 40px;
    display: grid;
    gap: 40px;
}

.plan-notes h3 {
    font-size: 30px;
    margin-left: 2.5%;
    color: white;
    margin-bottom: 20px;
}

.plan-table-wrap h3 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}

.check-list li {
    display: flex;
    gap: 12px;
    font-size: 18px;
    color: #c9c9c9;
}

.check-list li i {
    font-style: normal;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme);
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.plan-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--theme);
    color: #fff;
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: background .25s ease;
}

.plan-cta:hover {
    background: var(--primary);
}

.plan-cta .arrow {
    transition: transform .25s ease;
}

.plan-cta:hover .arrow {
    transform: translateX(4px);
}

.table-sub {
    color: rgb(86 85 85);
    margin-bottom: 25px !important;
    font-size: 18px;
    max-width: 100%;
    text-align: center;
    width: 700px;
    margin: 0 auto;
}

.auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.auction-col {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.auction-col thead th {
    background: var(--theme);
    color: var(--gold);
    text-align: end;
    padding: 9px 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.auction-col thead th:nth-child(2) {
    text-align: end;
}

.auction-col tbody td {
    padding: 8px 10px;
    border-bottom: 1px solid #eee6d8;
}

.auction-col tbody tr:nth-child(even) {
    background: #faf8f0;
}

.auction-col .mo {
    font-weight: 700;
    color: var(--dark);
    width: 36px;
    font-size: 17px;
}

.auction-col .amt {
    text-align: right;
    font-weight: 600;
    font-size: 17px;
}

.auction-col tr.m-deposit .amt {
    color: var(--primary);
    font-weight: 800;
}

.auction-col tr.m-low .amt {
    color: #b8860b;
}

/* ---------- Rules section ---------- */
.rules {
    color: #fff;
    padding: 0px 20px 60px 20px;
    margin-top: 40px;
}

.rules-inner {
    margin: 0 auto;
}

.rules h2 {
    color: #000000;
    font-size: 34px;
    margin-bottom: 10px;
    text-align: center;
}

.rules>.rules-inner>p {
    color: rgba(0, 0, 0, 0.65);
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rule-card {
    background: linear-gradient(144deg, #003718 0%, #052f18 30%, #0e3d1f 55%, #124d29 75%, #061f12 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
}

.rule-card h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

.rule-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    margin: 0;
}

/* ---------- CTA footer strip ---------- */
.cta-strip {
    max-width: 1100px;
    margin: 70px auto 90px;
    padding: 0 24px;
}

.cta-box {
    background: var(--gold);
    border-radius: 22px;
    padding: 50px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-box h3 {
    font-size: 28px;
    max-width: 480px;
}

.cta-box a {
    background: var(--ink);
    color: #fff;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.table-head {
    text-align: center;
}

.plan-notes {
    background-color: #0e3d1f;
    padding: 50px 25px;
    border-radius: 40px;
}

.feature-style-five-items .item .icon {
    margin-bottom: 25px;
    text-align: center;
}

.feature-style-five-items .item .icon i {
    font-size: 50px;
    color: var(--theme);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ---------- Desktop / small laptop (max-width: 1100px) ---------- */
@media (max-width: 1100px) {
    .plan-stats {
        gap: 40px;
    }
}

/* ---------- Tablet (max-width: 991px) ---------- */
@media (max-width: 991px) {

    .hero h1 {
        font-size: 38px;
    }

    .sum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-body {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .hero-meta div {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 16px;
    }

    .breadcrumb-area {
        padding: 40px 0;
    }

    .breadcrumb-item h2 {
        font-size: 28px;
    }

    .site-heading .title {
        font-size: 30px;
        line-height: 1.3;
    }

    .site-heading .sub-title {
        font-size: 14px;
    }

    .pricing-style-three-item {
        padding: 30px 22px;
    }

    .pricing-header p {
        font-size: 14px;
    }

    .pricing h1 {
        font-size: 34px;
    }

    .pricing h1 sup {
        font-size: 20px;
    }

    .pricing h1 sub {
        font-size: 13px;
    }

    .list-style-six li {
        gap: 10px;
    }

    .list-style-six .info h2 {
        font-size: 16px;
    }

    .list-style-six .info p {
        font-size: 13px;
    }

    .pricing-bottom-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .list-style-two li {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .plan-btn .btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* plan sections */
    .plan-head {
        padding: 34px 28px;
        gap: 20px;
    }

    .plan-num {
        font-size: 50px;
        min-width: 60px;
    }

    .plan-head-text h2 {
        font-size: 26px;
    }

    .plan-head-text p {
        max-width: 100%;
    }

    .plan-stats {
        gap: 30px 24px;
    }

    .plan-stats strong {
        font-size: 20px;
    }

    .plan-body {
        padding: 34px 0px;
    }

    .plan-notes {
        padding: 34px 20px;
    }

    .plan-notes h3 {
        font-size: 24px;
        margin-left: 0;
    }

    .plan-table-wrap h3 {
        font-size: 24px;
    }

    .table-sub {
        width: 100%;
        font-size: 15px;
    }

    .check-list li {
        font-size: 15px;
    }
}

/* ---------- Small tablet / large mobile (max-width: 767px) ---------- */
@media (max-width: 767px) {

    .breadcrumb-area {
        padding: 30px 0;
        text-align: center;
    }

    .breadcrumb-item h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .breadcrumb-item .row {
        justify-content: center;
    }

    .breadcrumb ol {
        justify-content: center;
        font-size: 13px;
    }

    .pricing-style-three-area {
        padding: 40px 0;
    }

    .site-heading .title {
        font-size: 24px;
    }

    .pricing-style-three-item {
        padding: 26px 18px;
        margin-bottom: 20px;
    }

    .pricing-header span {
        font-size: 15px;
    }

    .pricing-header p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .pricing h1 {
        font-size: 28px;
    }

    .pricing h1 sub {
        font-size: 12px;
    }

    .list-style-six {
        flex-direction: column;
        gap: 14px;
    }

    .list-style-six li {
        width: 100%;
    }

    .pricing-bottom-info {
        margin-top: 16px;
    }

    .list-style-two li {
        font-size: 13px;
    }

    .plan-btn {
        margin-top: 18px;
        text-align: center;
    }

    .plan-btn .btn {
        width: 100%;
        justify-content: center;
    }

    /* plan sections */
    .plan-block {
        margin: 40px auto;
        padding: 0 16px;
    }

    .plan-head {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .plan-num {
        font-size: 40px;
        min-width: 44px;
    }

    .plan-tag {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .plan-head-text h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .plan-head-text p {
        font-size: 14px;
    }

    .plan-stats {
        gap: 20px;
        width: 100%;
    }

    .plan-stats .stat {
        flex: 1 1 40%;
        min-width: 120px;
    }

    .plan-stats strong {
        font-size: 18px;
    }

    .plan-stats span {
        font-size: 10px;
    }

    .plan-body {
        padding: 26px 0px;
        gap: 26px;
        border-radius: 0 0 16px 16px;
    }

    .plan-notes {
        padding: 26px 16px;
        border-radius: 20px;
    }

    .plan-notes h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .check-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .check-list li {
        font-size: 14px;
        gap: 10px;
    }

    .plan-table-wrap h3 {
        font-size: 20px;
    }

    .table-sub {
        width: 100%;
        font-size: 14px;
        margin-bottom: 18px !important;
    }

    .auction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auction-col {
        font-size: 12.5px;
    }

    .auction-col thead th {
        font-size: 13px;
        padding: 7px 8px;
    }

    .auction-col tbody td {
        padding: 6px 8px;
    }

    .auction-col .mo,
    .auction-col .amt {
        font-size: 14px;
    }
}

/* ---------- Small mobile (max-width: 560px) ---------- */
@media (max-width: 560px) {
    .sum-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 18px 50px;
    }
}

/* ---------- Small mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {

    .breadcrumb-item h2 {
        font-size: 20px;
    }

    .site-heading .title {
        font-size: 20px;
    }

    .pricing h1 {
        font-size: 24px;
    }

    .pricing h1 sup {
        font-size: 16px;
    }

    .pricing-style-three-item {
        padding: 22px 16px;
    }

    .list-style-two li {
        font-size: 12.5px;
    }

    /* plan sections */
    .plan-num {
        font-size: 32px;
        min-width: 36px;
    }

    .plan-head-text h2 {
        font-size: 19px;
    }

    .plan-stats {
        gap: 16px;
    }

    .plan-stats .stat {
        flex: 1 1 42%;
        min-width: 0;
    }

    .plan-stats strong {
        font-size: 16px;
    }

    .plan-notes h3 {
        font-size: 18px;
    }

    .check-list li {
        font-size: 13px;
    }

    .auction-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .auction-col {
        font-size: 12px;
    }
}