/* octalfox.com */

:root {
    --brand-blue: #7dc3ec;
    --brand-orange: #f67b2c;
    --brand-white: #ffffff;
}

.txt-white {
    color: var(--brand-white) !important;
}

.txt-blue {
    color: var(--brand-blue) !important;
}

.txt-orange {
    color: var(--brand-orange) !important;
}

.bg-blue {
    background-color: var(--brand-blue) !important;
}

.bg-orange {
    background-color: var(--brand-orange) !important;
}


.branded-bg {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Overlay */
.branded-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95) 0%,   /* Top: stronger white */
        rgba(255, 255, 255, 0.55) 55%, /* Middle: softer fade */
        rgba(255, 255, 255, 0) 100%    /* Bottom: fully visible image */
    );
    z-index: 1;
}

@media (max-width: 640px) {
    .branded-bg::before {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.95) 0%,  /* almost white on top */
            rgba(255, 255, 255, 0.65) 80%, /* slower fade */
            rgba(255, 255, 255, 0.25) 100% /* still visible but more subtle */
        );
    }
}

/* Make sure content appears above overlay */
.branded-bg > * {
    position: relative;
    z-index: 2;
}

.dark .branded-bg {
    background-image: url('../media/images/2600x1600/1.png');
}

.logo-mini{
    height: 56px !important;
}

.logo-mini-2{
    height: 35px !important;
}
 #plansContainer {
    padding: 15px !important;
 }

 .tab-btn {
    transition: border-color 0.2s ease, color 0.2s ease;
}
.tab-btn.border-primary {
    border-bottom-width: 2px !important;
}

.plan-card {
    border: 1px solid var(--kt-border-color, #E0E6ED);
    border-radius: 0.75rem;
    padding: 1.25rem;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}
.plan-card:hover {
    box-shadow: 0 10px 25px rgba(15,23,42,.08);
    border-color: var(--kt-primary);
    transform: translateY(-2px);
}
.plan-card.selected {
    border-width: 2px;
    border-color: var(--kt-primary);
    background: rgba(37,99,235,.03);
}
.plan-card input {
    display: none;
}
.self-center {
    align-self: center !important;
}