.text-gradient {
    background: linear-gradient(135deg, var(--tp-theme-1) 0%, var(--tp-common-dpink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

.p-relative {
    position: relative;
}

.grey-bg {
    background: var(--tp-grey-1);
}

.black-bg {
    background: var(--tp-common-black);
}

.yellow-bg {
    background: var(--tp-theme-primary);
}

.tp-subtitle {
    font-size: 16px; /* final override kept */
    font-weight: 500;
    color: #000000; /* last defined wins */
    margin-bottom: 20px;
}

.tp-subtitle::before {
    height: 12px;
    width: 12px;
    background-color: var(--tp-theme-primary);
    content: "";
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.tp-subtitle-before-color {
    color: rgba(41,41,48,0.6);
}

.tp-subtitle-before-color::before {
    background-color: rgba(41,41,48,0.6);
}

.tp-title {
    font-size: 23px; /* last definition kept */
    font-weight: 700;
    color: var(--tp-common-black);
    line-height: 1.1;
}

.tp-title-sm {
    font-size: 24px;
    font-weight: 700;
    color: var(--tp-common-black);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.tp-white-text {
    color: var(--tp-common-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.subtitle-secondary-color {
    color: #d2d2d2;
}

.tp-section-highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.tp-section-highlight svg {
    position: absolute;
    bottom: 11px;
    left: 2px;
    z-index: -1;
    width: 0;
    -moz-animation: section-highlight 1s ease-in-out 0.3s forwards;
    -webkit-animation: section-highlight 1s ease-in-out 0.3s forwards;
    animation: section-highlight 1s ease-in-out 0.3s forwards;
}

.icon-link {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.icon-link:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.container-fluid {
    margin-left: 130px; /* final override kept */
    margin-right: 130px;
    padding: 0 10px;
    width: auto;
}

.tp-logo img {
    max-height: 80px;
}



p.tp-caption {
    position: relative;
    z-index: 2;
    color: #545454;
}

.tp-fea-section-box {
    text-align: center;
}


@font-face {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-style: normal;
    font-display: swap; /* 👈 added */
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* 👈 added */
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-brands-400.woff2') format('woff2');
}

















/* Sidebar base (CSS sticky) */
.sidebar {
    position: sticky;
    top: 100px;                  /* distance from top when sticking */
    overflow-y: auto;
    transition: transform 0.1s linear;
}

/* classes toggled by JS */
.sidebar.fixed {
    position: fixed !important;
    z-index: 1050;
}
.sidebar.absolute {
    position: absolute !important; /* anchored inside parent column (parent must be position: relative) */
    z-index: 1040;
}

/* disable sticky behavior on small screens */
@media (max-width: 767.98px) {
    .sidebar { position: static; max-height: none; overflow: visible; box-shadow: none; margin-top: 40px; }
}