.main-footer .footer-bottom {
    background-color: #dcac24;
    padding: 2px 0px;
    position: relative;
}

.main-footer .widgets-section .big-column .footer_column {
    position: relative;
    padding: 28px 2px;
}

.page-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--theme-color2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 325px;
    position: relative;
}

.main-header {
    width: 100%;
    z-index: 999;
    background-color: #790825;
}


.main-footer {
    position: relative;
    background-color: #790825;
}

.pricing-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    /*text-align: center;*/
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Toggle */
.toggle-btn {
    padding: 10px 25px;
    border: 2px solid #790825;
    background: transparent;
    border-radius: 30px;
    color: #790825;
    margin: 5px;
    cursor: pointer;
}

.toggle-btn.active {
    background: #790825;
    color: #fff;
}

/* Wrapper FIX */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing-wrapper:not(.active) {
    display: none;
}

/* Card */
.pricing-card {
    flex: 1 1 260px;
    /* reduced width */
    max-width: 280px;
    /* tighter card */
    background: #fff;
    border-radius: 18px;
    padding: 25px 16px;
    /* reduced padding */
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}


.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Top bar */
.top-bar {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #790825, #dcac24);
    position: absolute;
    top: 0;
    left: 0;
}

/* Popular */
.pricing-card.popular {
    border: 2px solid #dcac24;
    transform: scale(1.05);
}

/* Badge */
.badge {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #790825;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* Title */
.pricing-card h3 {
    color: #790825;
}

/* Plan */
.plan {
    color: #999;
    font-size: 13px;
    font-weight: 700;
}

/* BIG PRICE */
.price {
    font-size: 48px;
    font-weight: 800;
    color: #790825;
    margin: 20px 0;
}

/* List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #dcac24;
}

/* Button */
.btn-buy {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(45deg, #790825, #dcac24);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navigation {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navigation li {
    position: relative;
}

/* REMOVE WHITE BORDER / BACKGROUND */
.navigation li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #000;
    background: transparent;
    border: none;
}

/* DROPDOWN BASE */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 5px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

/* SHOW DROPDOWN */
.dropdown:hover>.submenu {
    display: block;
}

/* SUB MENU RIGHT SIDE */
.has-sub {
    position: relative;
}

.sub-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* 🔥 MAIN FIX */
.has-sub:hover>.sub-submenu {
    display: block;
}

/* LINKS STYLE */
.submenu li a,
.sub-submenu li a {
    padding: 10px 15px;
    color: #333;
}

.submenu li a:hover,
.sub-submenu li a:hover {
    background: #f3f3f3;
}

/* 🚨 CRITICAL FIX (NO CUTTING MENU) */
.nav,
.navigation,
.main-menu {
    overflow: visible !important;
}

/* REMOVE ANY BORDER FROM THEME */
.navigation li,
.submenu,
.sub-submenu {
    border: none !important;
}

.submenu,
.sub-submenu {
    display: none;
}

.submenu.show,
.sub-submenu.show {
    display: block;
}

.info-container-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* 🔥 UPDATED WIDTH */
.info-card {
    width: 100%;
    max-width: 1148px;
    /* 👈 increase from 600 → 900 */
    background: #fff;
    padding: 18px 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.info-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #222;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 🔴 Disclaimer */
.info-card.disclaimer {
    border-left: 5px solid red;
}

.info-card.disclaimer h4 {
    color: red;
}

.big-line {
    margin-bottom: 10px;
    line-height: 1.6;
}

.big-line {
    text-align: center;
    /* 🔥 center everything */
    margin-bottom: 10px;
}

.big-line strong {
    font-size: 16px;
    color: #111;
    font-weight: 700;
}

/* 👇 Description */
.big-line span {
    font-size: 15px;
    color: #555;
}

.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

/* INPUT */
.form-group {
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: #4a6cf7;
    outline: none;
}

/* BUTTON */
.form-box button {
    width: 100%;
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.form-box button:hover {
    background: #333;
}


.services-details__content h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.services-details__content ul {
    padding-left: 18px;
}

.services-details__content ul li {
    margin-bottom: 5px;
}

.full-disclaimer {
    background: #fff;
    padding: 25px 0;
    border-top: 4px solid #790825;
    border-bottom: 4px solid #dcac24;
}

.full-disclaimer strong {
    color: #000;
    font-weight: 700;
}

.full-disclaimer p {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    margin: 5px 0 0;
}

.full-disclaimer {
    background: #fff;
    padding: 25px 0;
    border-top: 4px solid #790825;
    border-bottom: 4px solid #dcac24;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.service-links {
    list-style: none;
    padding: 0;
}

.service-links li {
    margin-bottom: 10px;
}

.service-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    padding-left: 22px;
    transition: 0.3s;
}

/* ICON */
.service-links a i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #790825;
}

/* UNDERLINE EFFECT */
.service-links a::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #dcac24;
    transition: width 0.3s ease;
}

/* HOVER */
.service-links a:hover {
    color: #790825;
}

.service-links a:hover::after {
    width: calc(100% - 22px);
}

/* ACTIVE LINK */
.service-links a.active {
    color: #790825;
    font-weight: 600;
}

.service-links a.active::after {
    width: calc(100% - 22px);
}



/* COMMON */
.sidebar-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* BLOG */
.blog-widget {
    margin-top: 25px;
}

.blog-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.blog-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-item p {
    font-size: 13px;
    margin: 0;
    color: #333;
}

/* CONTACT */
.contact-widget {
    margin-top: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
    font-size: 13px;
}

.contact-list i {
    color: #790825;
    font-size: 14px;
}

.contact-list a {
    color: #333;
    text-decoration: none;
}

.contact-list a:hover {
    color: #790825;
}

.equity-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* CARD */
.eq-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px;
    transition: 0.3s;
}

.eq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* TEXT */
.eq-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #111;
}

.eq-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .equity-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .equity-cards {
        grid-template-columns: 1fr;
    }
}

.equity-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.eq-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f1f3f6;
}

.eq-header div {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #ddd;
}

.eq-header div:first-child {
    background: #2f5d62;
    color: #fff;
}

/* BODY */
.eq-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.eq-box {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
}

.eq-box:last-child {
    border-right: none;
}

/* ICON */
.eq-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TEXT */
.eq-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.mt {
    margin-top: 10px;
}

.risk {
    color: #e67e22;
    font-weight: 600;
}

@media (max-width: 992px) {
    .eq-header, .eq-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .eq-header, .eq-body {
        grid-template-columns: 1fr;
    }
}

.plans-section {
    text-align: center;
    margin-top: 30px;
}

.plans-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* GRID */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.plan-card {
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fb;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    border: 1px solid #eee;
}

.plan-card i {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2f5d62;
}

.plan-card h5 {
    font-size: 16px;
    font-weight: 600;
}


.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 20px;
    line-height: 29px;
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-color-white);
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    background-color: #ffc107;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 20px;
    line-height: 29px;
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-color-white);
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    background-color: #ffc107;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.service-scroll-section {
    background: #790825;
    padding: 70px 20px;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
}

.scroll-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
}

.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #dcac24;
    border-radius: 10px;
}

.scroll-card {
    min-width: 220px;
    max-width: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.scroll-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-title {
    background: #dcac24;
    color: #000;
    font-weight: 600;
    padding: 15px;
    font-size: 16px;
}

.scroll-card:hover {
    transform: translateY(-10px) scale(1.05);
}


.about-section {
    position: relative;
    padding: 46px 0 24px;
    background-position: left top;
    background-repeat: no-repeat;
    background-color: var(--theme-color2);
}

.pricing-top-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 30px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn:hover {
    background: #dcac24;
    color: #000;
}

.tab-btn.active {
    background: #790825;
    color: #fff;
}

.bank-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.bank-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    transition: 0.3s;
}

.bank-card h3 {
    margin-bottom: 15px;
    color: #790825;
}

.bank-info {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bank-info li {
    margin-bottom: 10px;
    font-size: 14px;
}

.qr-box img {
    width: 180px;
    margin: 20px 0;
}

.note {
    font-size: 13px;
    color: #777;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: #790825;
    background-color: #ffc107;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    right: 20px;
    top: 13px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50px;
    color: var(--theme-color-light);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
    background-color: #790825;
}


.career-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.career-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
}

.career-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #790825;
}

.career-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.apply-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #dcac24;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

.apply-btn:hover {
    background: #000;
    color: #fff;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.sheet-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f5f5f5;
    /* optional */
}

.sheet-container {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sheet-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 25px;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;

    /* Gradient Border */
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(45deg, #dcac24, #790825);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

h2 {
    color: #790825;
    margin-bottom: 5px;
}

h3 {
    color: #dcac24;
    margin-bottom: 15px;
}

.section {
    margin-top: 15px;
}

.section h4 {
    margin-bottom: 5px;
    color: #333;
}

ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.open-btn {
    padding: 4px 4px;
    font-size: 12px;
    background: linear-gradient(45deg, #dcac24, #790825);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}


.terms-box {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background: #fafafa;
    line-height: 1.6;
}

.terms-box h3 {
    color: #790825;
    margin-bottom: 10px;
}

.terms-box ol {
    padding-left: 18px;
}

.terms-box ul {
    padding-left: 18px;
}

.terms-box li {
    margin-bottom: 8px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
}

.modal-content {
    background: #fff;
    margin: 3% auto;
    padding: 20px;
    width: 95%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Bigger modal */
.modal-content.large {
    max-width: 900px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

/* FORM */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input,
input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* SIGNATURE */
#signaturePad {
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    margin: 10px 0;
}

/* TERMS */
.terms-box {
    max-height: 200px;
    overflow-y: auto;
    background: #f9f9f9;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* CHECKBOX */
.check-row {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #dcac24, #790825);
    color: #fff;
    border: none;
    border-radius: 5px;
}

/* MOBILE */
@media(max-width:600px) {
    .form-row {
        flex-direction: column;
    }
}


.terms-box {
    max-height: 350px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}


.service-section {
    padding: 40px 20px;
    background: #f9f9f9;
    height: 100vh;
    /* full screen */
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    height: 100%;
}

/* LEFT IMAGE */
.service-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
}

/* RIGHT CONTENT (SCROLLABLE 🔥) */
.service-content {
    flex: 1.5;
    height: 100%;
    overflow-y: auto;
    /* 🔥 SCROLL HERE */
    padding-right: 10px;
}

/* SCROLLBAR STYLE (optional 🔥) */
.service-content::-webkit-scrollbar {
    width: 6px;
}

.service-content::-webkit-scrollbar-thumb {
    background: #0387c1;
    border-radius: 10px;
}

.service-content h2 {
    margin-bottom: 10px;
    color: #15669e;
}

.section {
    margin-bottom: 15px;
}

.section h4 {
    color: #0387c1;
    margin-bottom: 5px;
}

.section ul {
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 5px;
}

.disclaimer {
    background: #fff3f3;
    padding: 10px;
    border-left: 4px solid red;
    border-radius: 5px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        height: auto;
    }

    .service-content {
        height: auto;
        overflow: visible;
        /* remove scroll in mobile */
    }
}


.payment-warning {
    width: 100%;
    background-color: #b30000;
    /* warm red → warning yellow */
    color: #ffffff;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #b30000;
}

.payment-warning p {
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

/* Highlight "Warning" text */
.payment-warning strong {
    color: #ffffff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-warning {
        font-size: 13px;
        padding: 10px;
    }
}

.terms-box {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.terms-box h3 {
    color: #b30000;
    margin-top: 15px;
}

.terms-box ul {
    padding-left: 18px;
}

.terms-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-sebi {
    margin-top: 10px;
    font-weight: 600;
    color: #dcac24;
    font-size: 14px;
}

/* Arrow bullets inside accordion */
.accordion-box ul {
    list-style: none;
    padding-left: 0;
}

.accordion-box ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
}

.accordion-box ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    color: #dcac24;
    font-size: 14px;
}

.main-footer .footer-bottom {
    background-color: #dcac24;
    padding: 2px 0px;
    position: relative;
}

.main-footer .widgets-section .big-column .footer_column {
    position: relative;
    padding: 28px 2px;
}

.page-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--theme-color2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 325px;
    position: relative;
}

.main-header {
    width: 100%;
    z-index: 999;
    background-color: #790825;
}


.main-footer {
    position: relative;
    background-color: #790825;
}

.pricing-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    /*text-align: center;*/
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Toggle */
.toggle-btn {
    padding: 10px 25px;
    border: 2px solid #790825;
    background: transparent;
    border-radius: 30px;
    color: #790825;
    margin: 5px;
    cursor: pointer;
}

.toggle-btn.active {
    background: #790825;
    color: #fff;
}

/* Wrapper FIX */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing-wrapper:not(.active) {
    display: none;
}

/* Card */
.pricing-card {
    flex: 1 1 260px;
    /* reduced width */
    max-width: 280px;
    /* tighter card */
    background: #fff;
    border-radius: 18px;
    padding: 25px 16px;
    /* reduced padding */
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}


.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Top bar */
.top-bar {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #790825, #dcac24);
    position: absolute;
    top: 0;
    left: 0;
}

/* Popular */
.pricing-card.popular {
    border: 2px solid #dcac24;
    transform: scale(1.05);
}

/* Badge */
.badge {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #790825;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* Title */
.pricing-card h3 {
    color: #790825;
}

/* Plan */
.plan {
    color: #999;
    font-size: 13px;
    font-weight: 700;
}

/* BIG PRICE */
.price {
    font-size: 48px;
    font-weight: 800;
    color: #790825;
    margin: 20px 0;
}

/* List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #dcac24;
}

/* Button */
.btn-buy {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(45deg, #790825, #dcac24);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navigation {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navigation li {
    position: relative;
}

/* REMOVE WHITE BORDER / BACKGROUND */
.navigation li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #000;
    background: transparent;
    border: none;
}

/* DROPDOWN BASE */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 5px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

/* SHOW DROPDOWN */
.dropdown:hover>.submenu {
    display: block;
}

/* SUB MENU RIGHT SIDE */
.has-sub {
    position: relative;
}

.sub-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* 🔥 MAIN FIX */
.has-sub:hover>.sub-submenu {
    display: block;
}

/* LINKS STYLE */
.submenu li a,
.sub-submenu li a {
    padding: 10px 15px;
    color: #333;
}

.submenu li a:hover,
.sub-submenu li a:hover {
    background: #f3f3f3;
}

/* 🚨 CRITICAL FIX (NO CUTTING MENU) */
.nav,
.navigation,
.main-menu {
    overflow: visible !important;
}

/* REMOVE ANY BORDER FROM THEME */
.navigation li,
.submenu,
.sub-submenu {
    border: none !important;
}

.submenu,
.sub-submenu {
    display: none;
}

.submenu.show,
.sub-submenu.show {
    display: block;
}

.info-container-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* 🔥 UPDATED WIDTH */
.info-card {
    width: 100%;
    max-width: 1148px;
    /* 👈 increase from 600 → 900 */
    background: #fff;
    padding: 18px 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.info-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #222;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 🔴 Disclaimer */
.info-card.disclaimer {
    border-left: 5px solid red;
}

.info-card.disclaimer h4 {
    color: red;
}

.big-line {
    margin-bottom: 10px;
    line-height: 1.6;
}

.big-line {
    text-align: center;
    /* 🔥 center everything */
    margin-bottom: 10px;
}

.big-line strong {
    font-size: 16px;
    color: #111;
    font-weight: 700;
}

/* 👇 Description */
.big-line span {
    font-size: 15px;
    color: #555;
}

.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

/* INPUT */
.form-group {
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: #4a6cf7;
    outline: none;
}

/* BUTTON */
.form-box button {
    width: 100%;
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.form-box button:hover {
    background: #333;
}


.services-details__content h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.services-details__content ul {
    padding-left: 18px;
}

.services-details__content ul li {
    margin-bottom: 5px;
}

.full-disclaimer {
    background: #fff;
    padding: 25px 0;
    border-top: 4px solid #790825;
    border-bottom: 4px solid #dcac24;
}

.full-disclaimer strong {
    color: #000;
    font-weight: 700;
}

.full-disclaimer p {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    margin: 5px 0 0;
}

.full-disclaimer {
    background: #fff;
    padding: 25px 0;
    border-top: 4px solid #790825;
    border-bottom: 4px solid #dcac24;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.service-links {
    list-style: none;
    padding: 0;
}

.service-links li {
    margin-bottom: 10px;
}

.service-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    padding-left: 22px;
    transition: 0.3s;
}

/* ICON */
.service-links a i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: #790825;
}

/* UNDERLINE EFFECT */
.service-links a::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #dcac24;
    transition: width 0.3s ease;
}

/* HOVER */
.service-links a:hover {
    color: #790825;
}

.service-links a:hover::after {
    width: calc(100% - 22px);
}

/* ACTIVE LINK */
.service-links a.active {
    color: #790825;
    font-weight: 600;
}

.service-links a.active::after {
    width: calc(100% - 22px);
}



/* COMMON */
.sidebar-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* BLOG */
.blog-widget {
    margin-top: 25px;
}

.blog-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.blog-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-item p {
    font-size: 13px;
    margin: 0;
    color: #333;
}

/* CONTACT */
.contact-widget {
    margin-top: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
    font-size: 13px;
}

.contact-list i {
    color: #790825;
    font-size: 14px;
}

.contact-list a {
    color: #333;
    text-decoration: none;
}

.contact-list a:hover {
    color: #790825;
}

.equity-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* CARD */
.eq-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px;
    transition: 0.3s;
}

.eq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* TEXT */
.eq-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #111;
}

.eq-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .equity-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .equity-cards {
        grid-template-columns: 1fr;
    }
}

.equity-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.eq-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f1f3f6;
}

.eq-header div {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #ddd;
}

.eq-header div:first-child {
    background: #2f5d62;
    color: #fff;
}

/* BODY */
.eq-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.eq-box {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
}

.eq-box:last-child {
    border-right: none;
}

/* ICON */
.eq-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TEXT */
.eq-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.mt {
    margin-top: 10px;
}

.risk {
    color: #e67e22;
    font-weight: 600;
}

@media (max-width: 992px) {
    .eq-header, .eq-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .eq-header, .eq-body {
        grid-template-columns: 1fr;
    }
}

.plans-section {
    text-align: center;
    margin-top: 30px;
}

.plans-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* GRID */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.plan-card {
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fb;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    border: 1px solid #eee;
}

.plan-card i {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2f5d62;
}

.plan-card h5 {
    font-size: 16px;
    font-weight: 600;
}


.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 20px;
    line-height: 29px;
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-color-white);
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    background-color: #ffc107;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 20px;
    line-height: 29px;
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-color-white);
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    background-color: #ffc107;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.service-scroll-section {
    background: #790825;
    padding: 22px 8px;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
}

.scroll-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
}

.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #dcac24;
    border-radius: 10px;
}

.scroll-card {
    min-width: 220px;
    max-width: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

.scroll-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-title {
    background: #dcac24;
    color: #000;
    font-weight: 600;
    padding: 15px;
    font-size: 16px;
}

.scroll-card:hover {
    transform: translateY(-10px) scale(1.05);
}


.about-section {
    position: relative;
    padding: 46px 0 24px;
    background-position: left top;
    background-repeat: no-repeat;
    background-color: var(--theme-color2);
}

.pricing-top-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 30px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn:hover {
    background: #dcac24;
    color: #000;
}

.tab-btn.active {
    background: #790825;
    color: #fff;
}

.bank-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.bank-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    transition: 0.3s;
}

.bank-card h3 {
    margin-bottom: 15px;
    color: #790825;
}

.bank-info {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bank-info li {
    margin-bottom: 10px;
    font-size: 14px;
}

.qr-box img {
    width: 180px;
    margin: 20px 0;
}

.note {
    font-size: 13px;
    color: #777;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: #790825;
    background-color: #ffc107;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    right: 20px;
    top: 13px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50px;
    color: var(--theme-color-light);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
    background-color: #790825;
}


.career-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.career-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
}

.career-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #790825;
}

.career-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.apply-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #dcac24;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

.apply-btn:hover {
    background: #000;
    color: #fff;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.sheet-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f5f5f5;
    /* optional */
}

.sheet-container {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sheet-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 25px;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;

    /* Gradient Border */
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(45deg, #dcac24, #790825);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

h2 {
    color: #790825;
    margin-bottom: 5px;
}

h3 {
    color: #dcac24;
    margin-bottom: 15px;
}

.section {
    margin-top: 15px;
}

.section h4 {
    margin-bottom: 5px;
    color: #333;
}

ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.open-btn {
    padding: 4px 4px;
    font-size: 12px;
    background: linear-gradient(45deg, #dcac24, #790825);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}


.terms-box {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background: #fafafa;
    line-height: 1.6;
}

.terms-box h3 {
    color: #790825;
    margin-bottom: 10px;
}

.terms-box ol {
    padding-left: 18px;
}

.terms-box ul {
    padding-left: 18px;
}

.terms-box li {
    margin-bottom: 8px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
}

.modal-content {
    background: #fff;
    margin: 3% auto;
    padding: 20px;
    width: 95%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Bigger modal */
.modal-content.large {
    max-width: 900px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

/* FORM */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input,
input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* SIGNATURE */
#signaturePad {
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    margin: 10px 0;
}

/* TERMS */
.terms-box {
    max-height: 200px;
    overflow-y: auto;
    background: #f9f9f9;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* CHECKBOX */
.check-row {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #dcac24, #790825);
    color: #fff;
    border: none;
    border-radius: 5px;
}

/* MOBILE */
@media(max-width:600px) {
    .form-row {
        flex-direction: column;
    }
}


.terms-box {
    max-height: 350px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}


.service-section {
    padding: 40px 20px;
    background: #f9f9f9;
    height: 100vh;
    /* full screen */
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    height: 100%;
}

/* LEFT IMAGE */
.service-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
}

/* RIGHT CONTENT (SCROLLABLE 🔥) */
.service-content {
    flex: 1.5;
    height: 100%;
    overflow-y: auto;
    /* 🔥 SCROLL HERE */
    padding-right: 10px;
}

/* SCROLLBAR STYLE (optional 🔥) */
.service-content::-webkit-scrollbar {
    width: 6px;
}

.service-content::-webkit-scrollbar-thumb {
    background: #0387c1;
    border-radius: 10px;
}

.service-content h2 {
    margin-bottom: 10px;
    color: #15669e;
}

.section {
    margin-bottom: 15px;
}

.section h4 {
    color: #0387c1;
    margin-bottom: 5px;
}

.section ul {
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 5px;
}

.disclaimer {
    background: #fff3f3;
    padding: 10px;
    border-left: 4px solid red;
    border-radius: 5px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        height: auto;
    }

    .service-content {
        height: auto;
        overflow: visible;
        /* remove scroll in mobile */
    }
}


.payment-warning {
    width: 100%;
    background-color: #b30000;
    /* warm red → warning yellow */
    color: #ffffff;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #b30000;
}

.payment-warning p {
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

/* Highlight "Warning" text */
.payment-warning strong {
    color: #ffffff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-warning {
        font-size: 13px;
        padding: 10px;
    }
}

.terms-box {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.terms-box h3 {
    color: #b30000;
    margin-top: 15px;
}

.terms-box ul {
    padding-left: 18px;
}

.terms-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-sebi {
    margin-top: 10px;
    font-weight: 600;
    color: #dcac24;
    font-size: 14px;
}

/* Arrow bullets inside accordion */
.accordion-box ul {
    list-style: none;
    padding-left: 0;
}

.accordion-box ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
}

.accordion-box ul li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    color: #dcac24;
    font-size: 14px;
}

#signaturePad {
    border: 2px solid #ccc;
    width: 100%;
    height: 200px;
    background: #fff;
    cursor: crosshair;
}

.terms-box {
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 12px 15px;
    background: #fff;

    font-family: Arial, sans-serif;
    font-size: 13px;
    /* smaller text */
    line-height: 1.5;
    color: #333;
}

.terms-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.terms-box h5 {
    font-size: 14px;
    margin: 12px 0 5px;
    font-weight: 600;
}

.terms-box p {
    margin: 5px 0;
    /* reduce spacing */
}

.terms-box ol,
.terms-box ul {
    margin: 5px 0 8px 18px;
    /* reduce left spacing */
    padding: 0;
}

.terms-box li {
    margin-bottom: 4px;
}

.terms-box {
    border-radius: 6px;
}

.terms-box::-webkit-scrollbar {
    width: 6px;
}

.terms-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.service-container {
    display: flex;
    gap: 25px;
}

.service-left {
    width: 25%;
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
}

.service-left ul {
    list-style: none;
    padding: 0;
}

.service-left li {
    margin-bottom: 10px;
}

.service-left a {
    text-decoration: none;
    display: block;
    padding: 10px;
    color: #333;
    border-radius: 5px;
    transition: 0.3s;
}

.service-left a:hover,
.service-left a.active {
    background: #790825;
    color: #fff;
}

.service-right {
    width: 75%;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
}

/* CONTENT SWITCH */
.content-box {
    display: none;
}

.content-box.active {
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        width: 100%;
    }
}

.service-right {
    height: 500px;
    /* fixed height */
    overflow-y: auto;
    /* vertical scroll */
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    scroll-behavior: smooth;
    /* smooth scroll */
}

/* Better scrollbar (optional but clean) */
.service-right::-webkit-scrollbar {
    width: 6px;
}

.service-right::-webkit-scrollbar-thumb {
    background: #790825;
    border-radius: 10px;
}

.content-box p {
    text-align: justify;
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-box h3 {
    margin-bottom: 15px;
}

.arrow-list {
    list-style: none;
    padding-left: 0;
}

.arrow-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    text-align: justify;
    line-height: 1.6;
}

.arrow-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #790825;
    font-size: 12px;
    top: 2px;
}

/* Improve paragraph look */
.content-box p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 10px;
}

.grievance-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
}

.level {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ddd;
}

.level:last-child {
    border-bottom: none;
}

.level h5 {
    color: #790825;
    margin-bottom: 5px;
}

.level p {
    margin: 4px 0;
    text-align: justify;
    line-height: 1.6;
}

.level a {
    color: #dcac24;
    text-decoration: none;
    font-weight: 500;
}

.level a:hover {
    text-decoration: underline;
}



.content-box {
    display: none;
}

.content-box.active {
    display: block;
}

#serviceSection {
  scroll-margin-top: 90px; /* same as header height */
}

.content-box h5 {
  text-align: left !important;
}

.content-box h3 {
  text-align: left !important;
}

.about-section .content-column .about-one_text {
    position: relative;
    margin-top: -70px;
    color: #ffffff;
    font-size: var(--sec-title-subtitle-font-size);
}


.main-footer .widgets-section .big-column .footer_column {
    position: relative;
    padding: 2px 1px;
}

@media only screen and (max-width: 1023px) {
    .main-footer .widgets-section .big-column .footer_column {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
  .eq-box img {
    display: block;
    max-width: 40%;
    margin: 0 auto;
    height: auto;
  }
}


.eq-box p {
    text-align: left !important;
    
}


.terms-box ul {
    padding-left: 20px;         /* Creates space for the bullets */
}

.terms-box li {
    margin-bottom: 6px;
    text-align: justify;
    list-style-type: disc !important;      /* Standard bullet */
}

/* WRAPPER */
.equity-wrapper {
  width: 100%;
}

/* HEADER */
.eq-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.eq-header div {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid #ddd;
  transition: 0.3s;
}

.eq-header div:last-child {
  border-right: none;
}

/* ACTIVE HEADER (default first) */
.eq-header div.active {
  background: #ff6600;
  color: #fff;
}

/* BODY GRID */
.eq-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

/* CARD */
.eq-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #eee;
}

/* IMAGE */
.eq-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* HOVER EFFECT */
.eq-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #ff6600;
}

/* TEXT */
.eq-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* RISK */
.risk {
  color: #ff6600;
  font-weight: 600;
}

/* ========================= */
/* 🔥 HEADER HOVER SYNC */
/* ========================= */

/* WHEN HOVER EACH BOX → ACTIVATE HEADER */
.eq-body .eq-box:nth-child(1):hover ~ * {}
.eq-body .eq-box:nth-child(1):hover {
}

/* JS will handle proper sync (see below) */


/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .eq-header {
    display: none; /* hide header on tablet */
  }

  .eq-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .eq-body {
    grid-template-columns: 1fr;
  }

  .eq-box {
    text-align: left;
  }

  .eq-box img {
    width: 60px;
    height: 60px;
  }
}


/* ========================= */
/* 📱 RESPONSIVE FIX (NO HTML CHANGE) */
/* ========================= */

@media (max-width: 768px) {

  /* Hide top header */
  .eq-header {
    display: none !important;
  }

  /* Stack cards */
  .eq-body {
    grid-template-columns: 1fr !important;
  }

  /* Card styling */
  .eq-box {
    position: relative;
    padding-top: 60px; /* space for header */
    text-align: center;
  }

  /* 🔥 Inject SAME header design inside card */
  .eq-box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #f5f5f5;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-radius: 10px 10px 0 0;
    content: "";
  }

  /* Assign titles */
  .eq-box:nth-child(1)::before {
    content: "What";
  }

  .eq-box:nth-child(2)::before {
    content: "Whom";
  }

  .eq-box:nth-child(3)::before {
    content: "Ideal For";
  }

  .eq-box:nth-child(4)::before {
    content: "Activity Level";
  }

  /* Image fix */
  .eq-box img {
    width: 70px;
    height: 70px;
    margin: 10px auto;
  }
}

@media (max-width: 767px) {
  .about-section .content-column .about-one_text {
    position: relative;
    margin-top: -22px;
    color: #ffffff;
    font-size: var(--sec-title-subtitle-font-size);
  }
}

.float-btn {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  line-height: 50px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* WhatsApp */
.float-btn.whatsapp {
  bottom: 80px;
  background: #25D366;
}

/* Call */
.float-btn.call {
  bottom: 20px;
  background: #f28826;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.about-section .image-column .inner-column .image-box .circle-border {
    position: absolute;
    bottom: -9px;
    top: -5px;
    left: -23px;
    right: -10px;
    z-index: 1;
    border-radius: 0px 50% 50% 50%;
    border: 6px solid var(--theme-color1);
}


.header-top {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* FLEX LINE */
.top-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LEFT + RIGHT FIXED */
.top-left,
.top-right {
  white-space: nowrap;
}

/* CENTER TAKES SPACE */
.top-marquee {
  flex: 1;
  overflow: hidden;
}

/* TEXT STYLE */
.header-top a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.header-top i {
  margin-right: 5px;
  color: #000;
}

/* MARQUEE RED */
.top-marquee marquee {
  color: red;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-inner {
    flex-direction: column;
    text-align: center;
  }

  .top-marquee {
    width: 100%;
  }
}