:root {
    /* --primary-color: #4854EB; */
    --primary-color: #0e3257;
    --secondary-color: #FCC625;
    --tertiory-color: #010080;
    --background-color: #CFF5E7;
    --bg-gradient: linear-gradient(135deg, #F3F3F3 0%, #ebebeb 100%);
    --veye-green: #F98304;
    --veye-green-alt: #8b8b8b;
    /* --veye-purple: #4854EB; */
    --veye-purple: #FCC625;
    --veye-purple-alt: #1B5858;

    --text-heading-color-one: #FCC625;
    --text-heading-color-two: #F98304;

    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --text-dark-color: #183354;
    --text-light-color: #f8f9fa;

    --gradient-blue: linear-gradient(137deg, #38a282 19.41%, #2e8d8d 65.49%);

    --font-family: 'Arial', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    --container-width: 1200px;


    --main-heading-font-size: 2rem;
    --sub-heading-font-size: 1.5rem;
    --paragraph-font-size: 1rem;
    --disclaimer-font-size: 0.875rem;
    --terms-font-size: 0.875rem;

}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark-color);
}

/* Genric */
.br-no-border {
    border: 0px
}

.btn-purple {
    background-color: var(--veye-purple);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-purple:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.homepage-heading {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.fade-content {
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}

a.veye-btn-link {
    text-decoration: none;
    cursor: pointer;
}

.NumRed {
    color: var(--danger-color) !important;
}

.NumGreen {
    color: var(--success-color) !important;
}

.NumGray {
    color: #555555 !important;
}

span.error {
    color: red;
    font-weight: bold;
}

.custm-h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
}


/* Veye Input Field */
.veye-form .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.veye-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.veye-form .range-control {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.veye-form .input-box {
    position: relative;
    margin: 10px 0;
}

.veye-form .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.veye-form .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.veye-form .input-box.focus .form-label,
.veye-form .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.veye-form .input-box.focus .form-label svg,
.veye-form .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}

.veye-form .form-select {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.veye-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}


/* Breadcrumb */
.breadcrumb {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 0.2rem;
}

.breadcrumb-item {
    display: inline-block;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-dark-color);
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: var(--text-dark-color);
}

/* Call Button */
a.float-Call-Button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 40px;
    background-color: var(--veye-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.float-Call-Button:hover {
    background-color: #3b4b8c;
}

a.float-Call-Button:active {
    background-color: #2c3e50;
}

.iti {
    width: 100%;
}

.validation-message {
    font-size: 0.8rem;
    color: var(--danger-color);
}


/* Header */
.header {
    padding-left: 0;
    padding-right: 0;
}

.header .bg-purple {
    background-color: var(--veye-purple);
    color: var(--text-light-color);
    position: relative;
    z-index: 1;
}

/* header logo Experiment */

/* Logo wrapper */
.navbar-brand {
    position: relative;
    z-index: 2;
    padding-left: 5px;
    /* spacing so white strip is visible */
}

/* white angled background */
.navbar-brand::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -130px;
    width: 300px;
    height: 120%;
    background: #fff;
    transform: skew(-35deg);
    z-index: -1;
    box-shadow: 4px 5px 9px rgba(0, 0, 0, 0.384);
}

/* Header Logo Experiment End */

.header .logo {
    width: 125px;
    height: auto;
}

.header .veye-top-navbar {
    padding: 10px 0;
}

.header .search-form {
    display: flex;
    flex-grow: 1;
    max-width: 50%;
}

.header .search-form input {
    /* width: 100%; */
    padding: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding-left: 1.2rem;
}

.header .search-form .btn-search-desktop {
    box-sizing: border-box;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-left: -40px;
    background-color: var(--secondary-color);
    color: var(--text-light-color);
    border: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.header .search-form .btn-search-desktop:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.header .mobile-search .search-form-mobile {
    display: flex;
    flex-grow: 1;
    max-width: 100%;
}

.header .mobile-search .search-form-mobile input {
    padding: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    line-height: 0.6rem;
    font-size: 0.7rem;
}

.header .mobile-search .search-form-mobile .btn-Search-mobile {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.header .btn-login-btn {
    background-color: var(--text-light-color);
    color: var(--dark-color);
    border: 1px solid;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: bold;
}

.header .mobile-login-btn {
    background-color: white;
    border: 1px solid var(--dark-color);
    border-radius: 30px;
    font-weight: bold;
    position: relative;
    right: -2.5rem;
}

.header .btn-login-btn:hover {
    background-color: var(--dark-color);
    color: var(--text-light-color);
}

.header .btn-notification {
    background-color: var(--veye-purple);
    color: var(--text-light-color);
    border-radius: 50%;
    padding: 8px;
}

.header .btn-notification:hover {
    color: var(--text-light-color);
}

.header .veye-bottom-navbar {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 1px 5px 9px rgba(0, 0, 0, 0.1);
}

.header .veye-bottom-navbar .navbar-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark-color);
}

.header .veye-bottom-navbar .navbar-nav a {
    color: var(--text-dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.header .veye-bottom-navbar .navbar-nav a:active {
    color: var(--primary-color);
}

/* .header .veye-bottom-navbar .dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header .veye-bottom-navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
} */


.header .veye-side-navbar .navbar-nav a {
    color: var(--text-dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.header .veye-side-navbar .navbar-nav .dropdown-menu {
    border: none;
}

.header .veye-side-navbar .navbar-nav .dropdown-menu li a {
    color: #334458;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.animate-marquee {
    animation: scroll-left linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-tile {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    max-width: 220px;
    box-sizing: border-box;
}

.marquee-text {
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 1rem;
    font-weight: bold;
    color: gray;
    backdrop-filter: blur(3px);
    height: 100%;
    padding-left: 20px;
    padding-right: 10px;
    background-color: white;
    padding-top: 10px;
}

.circular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--text-light-color);
    font-size: 0.9rem;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.stock-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stock-info .stock-up {
    color: #19AE57;
    font-weight: bold;
}

.stock-info .stock-down {
    color: #E70000;
    font-weight: bold;
}


/* Free Trial Banner */
.free-trial-banner {
    background: linear-gradient(100deg, #08213a 0%, #0e3257 45%, #00937a 100%);
    border-top: none;
    border-bottom: none;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.free-trial-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0,201,167,.08) 50%, transparent 100%);
    animation: ftbShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ftbShimmer {
    0%,100% { opacity: 0; }
    50%      { opacity: 1; }
}
.ftb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 12px 24px;
    position: relative;
    z-index: 1;
}
.ftb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,201,167,.15);
    border: 1px solid rgba(0,201,167,.35);
    color: #00c9a7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ftb-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00c9a7;
    animation: ftbPulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ftbPulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,201,167,.6); }
    50%      { opacity: .7; box-shadow: 0 0 0 4px rgba(0,201,167,0); }
}
.ftb-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}
.ftb-headline {
    margin: 0;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    line-height: 1.4;
    letter-spacing: -.01em;
}
.ftb-headline strong {
    color: #fff;
    font-weight: 700;
}
.ftb-sub {
    margin: 0;
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .01em;
}
.ftb-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #FCC625 0%, #FCC625 100%);
    color: #08213a;
    font-size: .8rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,201,167,.35);
    transition: transform .2s ease, box-shadow .2s ease;
    letter-spacing: -.01em;
}
.ftb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,201,167,.5);
    color: #08213a;
    text-decoration: none;
}
@media (max-width: 576px) {
    .ftb-inner { gap: 10px; padding: 12px 16px; }
    .ftb-body { text-align: center; }
    .ftb-badge { font-size: 9px; }
    .ftb-headline { font-size: .82rem; text-align: center; }
    .ftb-sub { display: none; }
}

/* legacy selectors kept for other pages that may use them */
.free-trial-banner .heading { font-size: 1.1rem; font-weight: bold; }
.free-trial-banner .heading .highlighted { font-weight: bolder; }
.free-trial-banner .ribbon-btn {
    position: relative; background: #fff; color: #000;
    border: none; font-size: 0.9rem; font-weight: 600;
    padding: 8px 20px; border-radius: 8px; cursor: pointer;
    transition: 0.3s; box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.free-trial-banner .ribbon-btn::after {
    content: ""; position: absolute; right: -23px; top: 2px;
    width: 0; height: 0;
    border-top: 17px solid transparent; border-bottom: 17px solid transparent;
    border-left: 20px solid #fff;
}
.free-trial-banner .ribbon-btn:hover { background: #f5f5f5; }



/* hero section */
.hero-section {
    background: var(--bg-gradient);
    padding: 60px 0;
    padding-left: 0;
}



.hero-section h1 {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-dark-color);
    text-align: start;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: Montserrat, sans-serif;
    text-shadow: 1px 1px 4px rgb(0 0 0 / 37%);
}

.hero-section h1 span {
    color: var(--veye-purple);
    font-weight: bolder;
    font-size: 1.7rem;
}

.hero-section .hero-description {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 30px;
}

.hero-section .hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-section .hero-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hero-section .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.hero-section .btn.btn-white {
    background-color: var(--light-color);
    color: var(--text-dark-color);
    border: 1px solid var(--primary-color);
}

.hero-section .btn.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}

.hero-section .btn.btn-purple {
    background-color: var(--veye-purple);
    color: var(--text-light-color);
    border: none;
}

.hero-section .btn.btn-purple:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.hero-section .hero-image img {
    position: relative;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.color-bg {
    background-color: #F3F3F3;
}





/* Veye Seperator */
.veye-seperator {
    width: 100%;
    height: 2px;
    /* background-color: var(--background-color); */
    background-color: #f6900125;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    position: relative;
}

.veye-seperator::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5.5%;
    height: 100%;
    /* background: var(--primary-color); */
    background: #F69001;
    transition: background-color 0.3s ease;
}

.veye-seperator:hover::before {
    background: var(--secondary-color);
}

.veye-seperator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 1%;
    height: 100%;
    background: white;
    transition: background-color 0.3s ease;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* Trending Market News */
.trending-market-news h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.trending-market-news .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.trending-market-news .card-img-top {
    width: 100%;
    height: 200px;
    /* Adjust as needed */
    object-fit: cover;
    display: block;
}

.trending-market-news .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.041), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.trending-market-news .image-wrapper .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    z-index: 2;
}

.trending-market-news .image-wrapper .card-body .badge {
    background-color: #8686869e;
    color: var(--text-light-color);
    font-size: 0.7rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.trending-market-news .image-wrapper .card-body .card-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-light-color);
}

.trending-market-news .image-wrapper .card-body .card-text {
    font-size: 0.8rem;
    color: var(--text-light-color);
}


/* High Low Charts Section */
.high-low-charts-section .nav-tabs {
    border-bottom: 0;
    margin-bottom: 20px;
    margin-top: 0 !important;
    gap: 2px;
}


.high-low-charts-section .nav .nav-link {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-dark-color);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.72rem;
}

.high-low-charts-section .nav .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}

.high-low-charts-section .nav .nav-link.active {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}

.high-low-charts-section .chart-table .card-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.high-low-charts-section .chart-table .card-body {
    padding: 0.6rem;
}

.high-low-charts-section .chart-table .card-body table {
    width: 100%;
    border-collapse: collapse;
}

.high-low-charts-section .chart-table .card-body table th,
.high-low-charts-section .chart-table .card-body table td {
    padding: 0.5rem;
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-dark-color);
}



/* Daily Analysis */
.daily-analysis h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.daily-analysis .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.daily-analysis .card-img-top {
    width: 100%;
    height: 200px;
    /* Adjust as needed */
    object-fit: cover;
    display: block;
}

.daily-analysis .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.041), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.daily-analysis .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    z-index: 2;
}

.daily-analysis .card-body .badge {
    background-color: #8686869e;
    color: var(--text-light-color);
    font-size: 0.7rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.daily-analysis .card-body .card-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-light-color);
}

.daily-analysis .card-body .card-text {
    font-size: 0.8rem;
    color: var(--text-light-color);
}

.daily-analysis .horizontal-cards .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
    border-radius: 0.5rem;
}

.daily-analysis .horizontal-cards .card .card-body {
    flex: 1;
    padding: 0rem;
    position: relative;
    padding-left: 0.5rem;
    padding-top: 0.2rem;
}

.daily-analysis .horizontal-cards .card .card-img-top {
    width: 150px;
    /* Adjust as needed */
    height: 100px;
    /* Adjust as needed */
    object-fit: cover;
    border-radius: 0.5rem;
}

.daily-analysis .horizontal-cards .card .card-body .badge {
    background-color: var(--veye-green-alt);
}

.daily-analysis .horizontal-cards .card .card-body h5 {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-dark-color);
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.daily-analysis .horizontal-cards .card .card-body p {
    font-size: 0.7rem;
    color: gray;
}

/* Mining News */
.mining-news h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.mining-news .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.mining-news .card-img-top {
    width: 100%;
    height: 150px;
    /* Adjust as needed */
    object-fit: cover;
    display: block;
}

.mining-news .card-body {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 1rem;
    z-index: 2;
}

.mining-news .card-body h5 {
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.mining-news .image-wrapper .badge {
    background-color: var(--veye-green-alt);
    color: var(--text-light-color);
    font-size: 0.7rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    padding: 0.5rem;
    position: absolute;
    top: 140px;
    left: 36%;
}

.mining-news .card-body .card-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--dark-color);
}

.mining-news .card-body .card-text {
    font-size: 0.8rem;
    color: var(--text-dark-color);
}

/* Subscribe Newsletter Section */
.subscribe-newsletter .card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 20px 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subscribe-newsletter .card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.subscribe-newsletter .card .card-text {
    font-size: 0.9rem;
    color: #6e6d6d;
    margin-bottom: 20px;
}

.subscribe-newsletter .card input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #93979b;
    border-radius: 6px;
    margin-bottom: 10px;
}

.subscribe-newsletter .card button[type="submit"] {
    background-color: black;
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.subscribe-newsletter .card button[type="submit"]:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.subscribe-newsletter .terms-text {
    text-align: justify;
    font-size: 0.7rem;
    color: #646465;
}

.subscribe-newsletter .terms-text a {
    /* text-decoration: none; */
    font-weight: bold;
    color: #646465;
}

.subscribe-newsletter .card .card-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #646465;
}

/* Past Recommendations */
.past-recommendations h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.past-recommendations .card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.past-recommendations .card .card-body {
    padding: 0;
}

.past-recommendations .card table {
    width: 100%;
    border-collapse: collapse;
}

.past-recommendations .card table th {
    background-color: black;
}

.past-recommendations .card table th:first-child {
    border-top-left-radius: 8px;
}

.past-recommendations .card table th:last-child {
    border-top-right-radius: 8px;
}

.past-recommendations .card table th {
    color: var(--text-light-color);
    padding: 10px;
    text-align: left;
    font-size: 0.7rem;
}

.past-recommendations .card table td {
    padding: 10px;
    font-size: 0.7rem;
    color: var(--text-dark-color);
}

.past-recommendations .disclaimer {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-top: 10px;
    text-align: start;
}


/* Watchlist Banner */
.watchlist-banner .homepage-heading {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.watchlist-banner .card {
    /* background-image: url('../images/static/watchlist_banner_bg.jpg'); */
    background-color: #f9f9f9;

    background-size: cover;
    background-blend-mode: overlay;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px dashed grey;
}

.watchlist-banner .card .card-body {
    padding: 1rem;
}

.watchlist-banner .card .card-body img {
    position: relative;
    filter: grayscale(1000%);
}

.watchlist-banner .card .card-body .card-title {
    color: black;
    text-align: center;
    /* font-family: "Lexend Deca"; */
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 37px;
}

.watchlist-banner .card .card-body .card-text {
    color: #0D0D0D;
    text-align: center;
    /* font-family: "Lexend Deca"; */
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.watchlist-banner .card .card-body .btn-veye {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: black;
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 10px;
}

.portfolio-ad .card {
    border-radius: 16px;
    border: 0 solid #E5E7EB;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.portfolio-ad .card .card-title {
    color: #111827;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.portfolio-ad .card .card-title .text-highlighted {
    color: var(--veye-purple);
}

.portfolio-ad .card .card-text {
    color: #31353b;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.portfolio-ad .card .veye-btn {
    border-radius: 4px;
    border: 2px solid var(--veye-purple);
    background-color: transparent;
    color: var(--veye-purple);
    padding: 8px 16px;
    font-weight: bold;
}

.portfolio-ad .card .veye-btn:hover {
    background-color: var(--veye-purple);
    color: #fff;
}

.advertisement-card .card {
    border-radius: 16px;
    border: 0 solid #E5E7EB;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.advertisement-card .card-body {
    background-color: #000000a6;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    text-align: center;

    background-image: url('../images/static/contact-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.advertisement-card .card .card-title {
    color: var(--text-light-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.advertisement-card .card .card-text {
    color: #e9e9e9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.advertisement-card .card .veye-btn {
    border-radius: 4px;
    border: 2px solid var(--text-light-color);
    background-color: transparent;
    color: var(--text-light-color);
    padding: 8px 16px;
    font-weight: bold;
}

.advertisement-card .card .veye-btn:hover {
    background-color: var(--text-light-color);
    color: #000;
}

/* 52 Week High Stocks */
.weeks-high-stocks h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.weeks-high-stocks .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.weeks-high-stocks .card-img-top {
    width: 100%;
    height: 210px;
    /* Adjust as needed */
    object-fit: cover;
    display: block;
}

.weeks-high-stocks .image-wrapper .badge {
    background-color: var(--veye-green-alt);
    color: var(--text-light-color);
    font-size: 0.7rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    padding: 0.5rem;
    position: absolute;
    top: 20px;
    left: 5%;
}

.weeks-high-stocks .card-body .card-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--dark-color);
}

.weeks-high-stocks .card-body .card-text {
    font-size: 0.8rem;
    color: var(--text-dark-color);
}

.weeks-high-stocks .card-body .description {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}


/* Our Subscription Section */
.our-subscription {
    background-color: #F3F3F3;
    padding: 40px 20px;
}

.our-subscription h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.our-subscription .card {
    background-color: #f8f9fad1;
    border-radius: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    border: solid 1px #000000;

    background-image: url('../images/static/price_card_clipart.png');
    background-size: cover;
    background-position: top;

    background-blend-mode: overlay;
}

.our-subscription .pkg-type-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.our-subscription img.price-card-clipart {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -50px;
    overflow: hidden;
}

.our-subscription .subscribe-btn {
    font-weight: bold;
    color: var(--text-light-color);
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.our-subscription .premium-btn {
    border: 1px solid black;
    background-color: #FFFFFF;
    color: var(--text-dark-color);
}

.our-subscription .sub-details .pkg-price-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.our-subscription .sub-details .pkg-description-text {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    font-weight: 600;
}

.our-subscription .sub-details .pkg-benefits {
    margin-top: 1rem;
    font-weight: 600;
}

.our-subscription .sub-details .pkg-benefits h5 {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.our-subscription .sub-details .pkg-benefits ul {
    list-style-type: none;
    padding: 0;
}

.our-subscription .sub-details .pkg-benefits li {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 0.5rem;
    line-height: 0.9rem;
}

.our-subscription .sub-details .pkg-benefits li::before {
    content: '✔';
    color: var(--veye-green);
    margin-right: 0.5rem;
}

.premium-card {
    /* background-color: #ebebeb; */
    background-image: url('../images/static/price_card_clipart-prem.png');
    background-size: cover;
    background-position: right;

    border-radius: 1.2rem;
    box-shadow: 3px 4px 11px rgb(0 0 0 / 34%);
    color: #000000;
}

.premium-card .badge {
    position: absolute;
    background-color: var(--veye-green);
    color: var(--text-light-color);
    font-size: 0.6rem;
    border-radius: 0rem;
    border-top-right-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem;
    text-transform: uppercase;
    padding: 0.5rem;
    position: absolute;
    top: -1px;
    right: -1px;
    padding: 0.6rem;
}

.our-subscription .premium-card .pkg-type-text,
.our-subscription .premium-card .pkg-price-text,
.our-subscription .premium-card .pkg-description-text,
.our-subscription .premium-card .pkg-benefits h5,
.our-subscription .premium-card .pkg-benefits li {
    color: black;
}


/* Dividend News */
.dividend-news h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.dividend-news .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.dividend-news .card-img-top {
    width: 100%;
    max-height: 247px;
    /* Adjust as needed */
    object-fit: cover;
    display: block;
}

.dividend-news .image-wrapper .small-text {
    color: var(--text-dark-color);
    font-size: 0.8rem;
    margin-top: -0.5rem;
}

.dividend-news .card-body .card-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--dark-color);
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.dividend-news .card-body .card-text {
    font-size: 0.8rem;
    color: var(--text-dark-color);

    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dividend-news .card-body .description {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.etf-news-section .card {
    border-radius: 0.5rem;
}

.etf-news-section .card-img-top {
    width: 150px;
    /* Adjust as needed */
    height: 100px;
    /* Adjust as needed */
    max-width: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.etf-news-section .text-small {
    color: grey;
    font-size: 0.7rem;
    font-weight: 600;
}


/* Newsletter Section */
.newsletter-section {
    background-color: #CAFFEB;
    padding: 40px 20px;
    border-radius: 0.5rem;
}

.newsletter-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-section input[type="email"] {
    width: 300px;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
}

.newsletter-section button[type="submit"] {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.product-review {
    background: #F3F3F3;
}

.product-review .stars .gold {
    color: #F5A623;
}

.product-review .rating-text {
    font-size: 0.8rem;
    color: var(--text-dark-color);
}

/* Footer */
.veye-footer {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.veye-footer .footer-logo {
    width: 150px;
    height: auto;
}

.veye-footer .disclaimer {
    font-size: 0.8rem;
    color: var(--text-light-color);
    margin-top: 10px;
    text-align: justify;
}

.veye-footer .footer-bottom .footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-heading-color-two);
}

.veye-footer .footer-bottom .footer-desc {
    font-size: 0.9rem;
    color: var(--text-light-color);
    margin-top: 5px;
    text-align: justify;
}

.veye-footer .desclaimer-desc {
    font-size: 0.8rem;
    color: var(--text-light-color);
    margin-top: 10px;
    text-align: justify;
}

.veye-footer .disclaimer a.veye-btn-link {
    text-decoration: underline;
}

.veye-footer .desclaimer-desc a.veye-btn-link {
    color: var(--text-heading-color-two) !important;
    text-decoration: underline;
}

.veye-footer a.veye-btn-link:hover {
    color: var(--text-heading-color-two) !important;
}

.veye-footer .useful-links .social-icons i {
    color: var(--text-light-color);
}

.veye-footer .footer-bottom li a {
    font-size: 0.9rem;
    color: var(--text-light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.veye-footer .footer-bottom li a:hover {
    color: var(--warning-color);
}

.veye-footer .footer-bottom li i {
    color: var(--light-color);
    position: relative;
    right: 5px;
}

.veye-footer .footer-bottom .certification-img {
    width: 70px;
    height: auto;
    margin-top: 10px;
}

.veye-footer .footer-last-line a {
    color: var(--text-light-color);
    text-decoration: none;
}






/*================== Login Page ================== */

.login-content {
    background-image: url('../images/static/login-bg.jpg');
    background-size: cover;
    background-position: center;

    background-color: #F5F5F5;
    background-blend-mode: overlay;
}

.login-content .card {
    border: solid 1px rgba(108, 106, 106, 0.65);
    border-radius: 0.5rem;
    box-shadow: 10px 10px 1px #D9D9D9;
    padding: 20px;
}

.login-content .card .card-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.login-content .card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--veye-purple);
}

.login-content .card .card-sub-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark-color);
    margin-top: 2.5rem;
}

.login-content .card .card-body {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Input Field */
.login-content .card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 1.8rem;
}

.login-content .card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.login-content .input-box {
    position: relative;
    margin: 10px 0;
}

.login-content .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 10px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.login-content .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.login-content .input-box.focus .form-label,
.login-content .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.login-content .input-box.focus .form-label svg,
.login-content .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}


.login-content .card .card-body .forgot-pass-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.login-content .card .card-body .remember-me-label {
    text-decoration: none;
    font-size: 0.8rem;
}

.login-content .card .card-body .terms-label {
    text-decoration: none;
    font-size: var(--terms-font-size);
}

.login-content .card .btn-login {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border-radius: 0.5rem;
    padding: 10px 20px;
    font-weight: bold;
    padding-left: 4rem;
    padding-right: 4rem;
}


/* User Dashboard */
.user-dashboard {
    padding: 20px;
}

.user-dashboard .main-sidebar {
    color: var(--text-dark-color);
    padding: 0;
    border-radius: 0.75rem;
}

.user-dashboard .main-sidebar .card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf1;
    overflow: hidden;
}

/* Sidebar Profile Header */
.user-dashboard .sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
}

.user-dashboard .sidebar-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.user-dashboard .sidebar-user-info {
    overflow: hidden;
}

.user-dashboard .sidebar-user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dashboard .sidebar-user-email {
    font-size: 0.78rem;
    color: #7a8a9e;
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sidebar Divider */
.user-dashboard .sidebar-divider {
    height: 1px;
    background: #e8ecf1;
    margin: 0 16px;
}

/* Section Labels */
.user-dashboard .sidebar-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9aa8b8;
    padding: 16px 16px 6px;
    list-style: none;
}

.user-dashboard .main-sidebar .card-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 20px;
}

.user-dashboard .sidebar .nav .nav-item {
    margin-bottom: 1px;
}

.user-dashboard .sidebar .nav .nav-item i {
    color: #7a8a9e;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: color 0.2s ease;
    width: 20px;
    text-align: center;
}

.user-dashboard .sidebar .nav .nav-item .nav-link {
    color: var(--text-dark-color);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 0.5rem;
    margin: 0 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.user-dashboard .sidebar .nav .nav-item .nav-link:hover {
    background-color: #f1f4f8;
    color: var(--primary-color);
}

.user-dashboard .sidebar .nav .nav-item .nav-link:hover i {
    color: var(--primary-color);
}

.user-dashboard .sidebar .nav .nav-item .nav-link.active {
    background-color: rgba(27, 88, 88, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

.user-dashboard .sidebar .nav .nav-item .nav-link.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    border-radius: 0 3px 3px 0;
    background: var(--primary-color);
}

.user-dashboard .sidebar .nav .nav-item .nav-link.active i {
    color: var(--primary-color);
}

/* Locked report links */
.user-dashboard .sidebar .nav .nav-item .nav-link.nav-link-locked {
    opacity: 0.55;
    font-style: normal;
}

.user-dashboard .sidebar .nav .nav-item .nav-link.nav-link-locked i {
    font-size: 0.8rem;
    color: #b0b8c4;
}

.user-dashboard .sidebar .nav .nav-item .nav-link.nav-link-locked:hover {
    opacity: 0.75;
}

.user-dashboard .sidebar .nav .nav-item a[aria-expanded="true"] .toggler-icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.user-dashboard .sidebar .nav .nav-item a[aria-expanded="false"] .toggler-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.user-dashboard .sidebar .nav .submenu {
    padding-left: 12px;
    margin-top: 2px;
}

.user-dashboard .sidebar .nav .submenu .nav-link {
    font-size: 0.82rem;
    padding: 6px 16px;
    font-weight: 400;
}

/* Logout Section */
.user-dashboard .sidebar-logout {
    padding: 4px 0 8px;
}

.user-dashboard .sidebar-logout .nav-link {
    color: #dc3545 !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 0.5rem;
    margin: 0 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.user-dashboard .sidebar-logout .nav-link i {
    color: #dc3545;
    font-size: 1.1rem;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.user-dashboard .sidebar-logout .nav-link:hover {
    background-color: rgba(220, 53, 69, 0.08);
}

/* Sidebar "New" Tag */
.sidebar-new-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    padding: 2px 8px;
    border-radius: 10px;
    line-height: 1.4;
    animation: newTagPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.4);
}

@keyframes newTagPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.35);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(17, 24, 39, 0);
    }
}

.user-dashboard .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.user-dashboard .overlay.show {
    display: block;
}

.user-dashboard .menu-toggle {
    position: relative;
    right: 0;
    z-index: 2;
}

.user-dashboard .btn-toggler {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 15px;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.user-dashboard .user-dashboard-content {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 0.5rem;
}

/* Reports Section Header */
.user-dashboard .reports-section .reports-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.user-dashboard .reports-section .reports-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-dashboard .reports-section .reports-section-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.user-dashboard .reports-section .reports-search-box {
    position: relative;
    max-width: 260px;
    width: 100%;
}

.user-dashboard .reports-section .reports-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa8b8;
    font-size: 0.85rem;
    pointer-events: none;
}

.user-dashboard .reports-section .reports-search-box input {
    padding: 8px 12px 8px 34px;
    border: 1px solid #e0e5ec;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    background: #fff;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.user-dashboard .reports-section .reports-search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 88, 88, 0.08);
    outline: none;
}

.user-dashboard .user-dashboard-content .welcome-box {
    padding: 0;
    border-radius: 1rem;
    color: var(--text-light-color);
    overflow: hidden;
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-box-inner {
    position: relative;
    padding: 28px 32px;
    background: linear-gradient(135deg, #060707 0%, #10312c 50%, #000000 100%);
    overflow: hidden;
}

/* Decorative background elements */
.user-dashboard .user-dashboard-content .welcome-box .welcome-bg-pattern {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-bg-circle {
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* Greeting */
.user-dashboard .user-dashboard-content .welcome-box .welcome-greeting-icon {
    font-size: 1.1rem;
    /* color: #FFC600; */
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-greeting-text {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.user-dashboard .user-dashboard-content .welcome-box h2 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.user-dashboard .user-dashboard-content .welcome-box .badge-hollow {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFC600;
    border: 1px solid rgba(255, 198, 0, 0.35);
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

.user-dashboard .user-dashboard-content .welcome-box .badge-hollow i {
    margin-right: 3px;
    font-size: 0.65rem;
}

.user-dashboard .user-dashboard-content .welcome-box h4 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-message {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
    max-width: 440px;
}

/* Welcome stats row */
.user-dashboard .user-dashboard-content .welcome-box .welcome-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-stat-item i {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.user-dashboard .user-dashboard-content .welcome-box .welcome-stat-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
}

.user-dashboard .user-dashboard-content .welcome-box .btn-black {
    background-color: #000000;
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.user-dashboard .user-dashboard-content .welcome-box .btn-black:hover {
    background-color: var(--info-color);
    color: var(--text-light-color);
}

.user-dashboard .user-dashboard-content .welcome-box .btn-black i {
    margin-left: 5px;
    background-color: var(--text-light-color);
    font-size: 0.8rem;
    color: #000000;
    border-radius: 2rem;
}

/* Avatar in welcome card */
.user-dashboard .user-dashboard-content .user-avatar-section {
    position: relative;
}

.user-dashboard .user-dashboard-content .user-avatar-section .user-avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.user-dashboard .user-dashboard-content .user-avatar-section .user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffffff;
    z-index: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.user-dashboard .user-dashboard-content .user-avatar-section .user-avatar-border {
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 102px;
    height: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.user-dashboard .user-dashboard-content .editorial-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.user-dashboard .user-dashboard-content .editorial-card .editorial-details .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 8px;
}

.user-dashboard .user-dashboard-content .editorial-card .editorial-details .time-date {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.user-dashboard .user-dashboard-content .editorial-card .editorial-details .btns .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    font-size: small;
}

.user-dashboard .user-dashboard-content .editorial-card .editorial-details .btns .btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}



.user-dashboard .reports-section {
    margin-top: 0;
}

/* Report Card */
.user-dashboard .reports-section .report-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e8ecf1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.user-dashboard .reports-section .report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Image Wrapper with Badge */
.user-dashboard .reports-section .report-card .report-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.user-dashboard .reports-section .report-card .report-card-img-wrapper .card-img-top {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.user-dashboard .reports-section .report-card:hover .report-card-img-wrapper .card-img-top {
    transform: scale(1.04);
}

.user-dashboard .reports-section .report-card .report-count-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.02em;
}

.user-dashboard .reports-section .report-card .report-count-badge i {
    font-size: 0.72rem;
}

/* Card Body */
.user-dashboard .reports-section .report-card .card-body {
    padding: 16px 18px 18px;
}

.user-dashboard .reports-section .report-card .report-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 6px;
    line-height: 1.35;
}

.user-dashboard .reports-section .report-card .report-card-desc {
    font-size: 0.8rem;
    color: #6b7b8d;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.user-dashboard .reports-section .report-card .report-card-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.user-dashboard .reports-section .report-card .report-card-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.user-dashboard .reports-section .report-card .report-card-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.user-dashboard .reports-section .report-card .report-card-btn:hover i {
    transform: translateX(3px);
}

/* No Subscription State */
.user-dashboard .reports-section .no-subscription-card {
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border: 2px dashed #d8dee6;
    border-radius: 0.75rem;
}

.user-dashboard .reports-section .no-subscription-card i {
    font-size: 2.5rem;
    color: #c0c8d4;
    margin-bottom: 12px;
    display: block;
}

.user-dashboard .reports-section .no-subscription-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 6px;
}

.user-dashboard .reports-section .no-subscription-card p {
    font-size: 0.85rem;
    color: #7a8a9e;
    max-width: 380px;
    margin: 0 auto 18px;
    line-height: 1.5;
}

.user-dashboard .reports-section .no-subscription-card .report-card-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
}

.user-dashboard .reports-section .no-subscription-card .report-card-btn:hover {
    background-color: #333333;
}

.user-dashboard .wishlist-section .card {
    border-radius: 0.4rem;
    border: 1px solid #C4C4C4;
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.user-dashboard .wishlist-section .nav-item .nav-link.active {
    border-radius: 0;
    border-bottom: 4px solid var(--primary-color);
    border-top: 0;
    border-left: 1px solid #C4C4C4;
    border-top-left-radius: 0.5rem;
    border-right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.user-dashboard .wishlist-section .nav-tabs .nav-link {
    color: gray;
}


/* Change Password Page */
.password-change-section .card {
    border: solid 1px rgba(108, 106, 106, 0.65);
    border-radius: 0.5rem;
    box-shadow: 10px 10px 1px #D9D9D9;
    padding: 20px;
}

.password-change-section .card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--veye-purple);
}


/* Input Field */
.password-change-section .card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.password-change-section .card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.password-change-section .input-box {
    position: relative;
    margin: 10px 0;
}

.password-change-section .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.password-change-section .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.password-change-section .input-box.focus .form-label,
.password-change-section .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.password-change-section .input-box.focus .form-label svg,
.password-change-section .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}

.password-change-section .card .btn-change-password {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border-radius: 0.5rem;
    padding: 10px 20px;
    font-weight: bold;
    padding-left: 4rem;
    padding-right: 4rem;
}


/* Contact Us */
.contact-card-body {
    background-image: url('../images/static/contact-bg.png');
    background-size: cover;
    background-position: center;

    background-color: #2D2D2DE0;
    background-blend-mode: overlay;
    padding: 40px;
    border-radius: 0.5rem;
    border: 0;
    height: 630px;
    margin-bottom: 300px;
}

.contact-card-body .contact-info {
    color: var(--text-light-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-card-body .contact-info .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-card-body .contact-info .section-description {
    color: var(--text-light-color);
    font-size: 0.9rem;
    font-weight: 200;
}

.contact-card-body .contact-info .contact-info-details {
    height: 200px;
}

.contact-card-body .contact-info .social-links h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-card-body .contact-info .contact-item i {
    margin-right: 5px;
}

.contact-card-body .contact-info .social-links a {
    color: var(--text-light-color);
    text-decoration: none;
    margin-right: 10px;
}

.contact-card-body .contact-info .social-links a:hover {
    color: var(--primary-color);
}


.contact-card-body .contact-form {
    border-radius: 0.5rem;
}

.contact-card-body .contact-form .card {
    border-radius: 0.8rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card-body .contact-form .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 25px;
}

.contact-card-body .contact-form .section-title span {
    color: var(--veye-purple);
    font-weight: bold;
    font-size: 2.0rem;
}

.contact-card-body .contact-form .section-description {
    color: var(--text-dark-color);
    font-size: 0.8rem;
    font-weight: 200;
    margin-bottom: 20px;
}


/* Input Field */
.contact-card-body .card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.contact-card-body .card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-card-body .input-box {
    position: relative;
    margin: 10px 0;
}

.contact-card-body .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.contact-card-body .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.contact-card-body .input-box.focus .form-label,
.contact-card-body .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.contact-card-body .input-box.focus .form-label svg,
.contact-card-body .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}


.contact-card-body .contact-info .maps {
    border-radius: 0.8rem;
    overflow: hidden;
}

/* Terms Pages */
.terms-page .terms-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 20px;
}

.terms-page h2,
.terms-page h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.terms-page p {
    font-size: 0.9rem;
    color: #6B6B6B;
    margin-bottom: 10px;
}

/* Subscribe Details Page */
.subscribe-details .subscribe-details-card {
    border-radius: 0.5rem;
    border: 1px solid #B6B6B6;
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.subscribe-details .subscribe-details-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.subscribe-details .subscribe-details-card .card-description {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.subscribe-details .subscribe-details-card .card-subtitle,
.subscribe-details .subscribe-details-card .frequency {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.subscribe-details .subscribe-details-card .card-features {
    font-size: 1rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.subscribe-details .subscribe-details-card .card-features li {
    list-style-type: none;
    margin-left: 10px;
}

.subscribe-details .subscribe-details-card .card-features li::before {
    content: '✔';
    color: var(--veye-purple);
    margin-right: 5px;
}

.subscribe-details .price-card {
    border: 0;
}

.subscribe-details .price-card .price-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.subscribe-details .price-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.subscribe-details .price-card .card-title span {
    font-size: 0.9rem;
}

.subscribe-details .price-card .card-title .offer-price {
    font-size: 1.5rem;
    color: var(--text-dark-color);
    font-weight: bolder;
}

.subscribe-details .price-card .card-title .normal-price {
    font-size: 1.1rem;
    color: var(--text-dark-color);
    font-weight: bold;
}

.subscribe-details .price-card .cut-price {
    font-size: 1.1rem;
    color: var(--text-dark-color);
    font-weight: bold;
    text-decoration: line-through;
}

.subscribe-details .price-card .inc-gst {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    font-weight: normal;
}

.subscribe-details .price-card .card-description {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
    font-weight: bold;
}


.subscribe-details .price-card .price_content .offesEnfsCs {
    font-size: 1.1rem;
    font-weight: normal;
}

.subscribe-details .price-card .price_content .offesEnfsCs span.bgcouSty {
    font-size: 1.4rem;
    font-weight: bolder;
}

.subscribe-details .price-card .form-check-input {
    border: solid 1px rgba(108, 106, 106, 0.65);
    border-radius: 0.4rem;
    width: 1.5rem;
    height: 1.5rem;
}

.subscribe-details .price-card .form-check-label {
    font-size: 1.0rem;
    color: var(--text-dark-color);
    line-height: 1.5rem;
}

.subscribe-details .price-card .btn-pay {
    background: var(--gradient-blue, linear-gradient(137deg, #48DBAF 19.41%, #1B5858 65.49%));
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.subscribe-details .price-card .btn-pay:hover {
    background: var(--veye-green);
    color: var(--text-light-color);
}

.subscribe-details .price-card .btn-paypal {
    background: var(--gradient-blue, linear-gradient(137deg, #2F88FF 19.41%, #1D68CD 65.49%));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.subscribe-details .price-card .btn-paypal:hover {
    background: var(--veye-green);
    color: #fff;
}

.subscribe-details .sell-results {
    margin-top: 20px;
}

.subscribe-details .sell-results h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.subscribe-details .sell-results p {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.subscribe-details .sell-results .btn-subscribe-now {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.subscribe-details .sell-results .btn-subscribe-now:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.subscribe-details .faqs .accordion .accordion-item {
    border: 2px solid #1B5858;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(102, 42, 178, 0.15);
    border-radius: 0.5rem;
    margin-bottom: 20px;

}

.subscribe-details .faqs .accordion .accordion-item:has(.collapsed) {
    border: 2px solid #D1D1D1;
}

.accordion-button:not(.collapsed) {
    color: var(--veye-purple);
}


/* Editorials Page */
.editorials-page .editorial-listings .editorial-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.editorials-page .editorial-listings .editorial-card .editorial-details .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 8px;
}

.editorials-page .editorial-listings .editorial-card .editorial-details .time-date {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.editorials-page .editorial-listings .editorial-card .editorial-details .btns .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    font-size: small;
}

.editorials-page .editorial-listings .editorial-card .editorial-details .btns .btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}


.editorials-page .recent-posts h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}



.editorials-page .post-listings img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.editorials-page .post-listings .post-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 8px;
}

.editorials-page .post-listings .post-desc {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.editorials-page .post-listings .btns .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    font-size: small;
}

.editorials-page .sales-card {
    background-image: url('../images/ads/top.jpg');
    background-size: cover;
    background-position: center;

    background-color: #212121b0;
    background-blend-mode: overlay;

    color: var(--text-light-color);
    text-align: center;
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.editorials-page .sales-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.editorials-page .sales-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.editorials-page .sales-card .btn-free-trial {

    background-color: var(--secondary-color);
    color: var(--text-light-color);
    border: none;
    padding: 7px 20px;
    border-radius: 2.5rem;
    font-weight: bold;
    cursor: pointer;
}

.editorials-page .sales-card .btn-free-trial:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.editorials-page .offer-card {
    background-image: url('../images/ads/bellow.jpg');
    background-size: cover;
    background-position: center;

    background-color: #212121de;
    background-blend-mode: overlay;

    color: var(--text-light-color);
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.editorials-page .offer-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.editorials-page .offer-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.editorials-page .offer-card .btn {
    background-color: var(--secondary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}


/* About page */

.about-page .about-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-page .about-section .card {
    background-color: var(--light-color);
    border-radius: 1.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-page .about-section img {
    border-radius: 0.8rem;
}

.about-page .about-section h2 {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .about-section h2 span {
    color: var(--veye-purple);
}

.about-page .about-section p {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.about-page .explore-section h2 {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .explore-section h2 span {
    color: var(--veye-purple);
}

.about-page .explore-section .card {
    background-color: var(--light-color);
    border-radius: 0.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


.about-page .explore-section i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page .explore-section svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    justify-content: center;
    align-items: center;
    display: flex;
}

.about-page .explore-section .card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .explore-section .card-active {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border-radius: 0.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-page .explore-section .card-active h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-light-color);
    margin-bottom: 10px;
}

.about-page .analysis-section h2 {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .analysis-section h2 span {
    color: var(--veye-purple);
}

.about-page .analysis-section p {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.about-page .analysis-section .card {
    background-color: var(--light-color);
    border-radius: 0.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-page .analysis-section .card img {
    border-radius: 0.4rem;
}

.about-page .testimonials-section h2 {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .testimonials-section h2 span {
    color: var(--veye-purple);
}

.about-page .testimonials-section .card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page .testimonials-section .card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.about-page .testimonials-section .card p {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Editorial Details */
.editorial-details-page .editorial-details {
    border-radius: 10px;
    border: 1px solid #B6B6B6;
    background: #FFF;

    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.editorial-details-page .editorial-details .team-veye {
    color: #000000;
    font-weight: 500;
    font-size: 0.8rem;
}

.editorial-details-page .editorial-details .date-time {
    color: #6B6B6B;
    font-weight: 500;
    font-size: 0.8rem;
}

.editorial-details-page .editorial-details .card-title {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.editorial-details-page .editorial-details .btn-get-report {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.editorial-details-page .editorial-details .editorial-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.editorial-details-page .editorial-details .editorial-content h2,
.editorial-details-page .editorial-details .editorial-content h1,
.editorial-details-page .editorial-details .editorial-content h4,
.editorial-details-page .editorial-details .editorial-content h5 {
    font-size: 1.3rem;
    font-weight: bold;
}

.editorial-details-page .editorial-details .editorial-content p {
    font-size: 1rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.editorial-details-page .desclaimer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.editorial-details-page .disclaimer p {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin-bottom: 15px;
}

.editorial-details-page .form-card {
    border-radius: 15px;
    border: 1px solid #B6B6B6;
    background: #FFF;

    overflow: hidden;


    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.editorial-details-page .form-card .card-body {
    z-index: 1;
}

.editorial-details-page .form-card .card-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.editorial-details-page .form-card h3.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.editorial-details-page .form-card .terms-label {
    color: var(--text-dark-color);
    font-size: var(--terms-font-size);
    margin-bottom: 10px;
}

.editorial-details-page .form-card .btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

/* Input Field */
.editorial-details-page .form-card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.editorial-details-page .form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.editorial-details-page .input-box {
    position: relative;
    margin: 10px 0;
}

.editorial-details-page .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.editorial-details-page .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.editorial-details-page .input-box.focus .form-label,
.editorial-details-page .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.editorial-details-page .input-box.focus .form-label svg,
.editorial-details-page .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}

.editorial-details-page .sales-card {
    background-image: url('../images/ads/top.jpg');
    background-size: cover;
    background-position: center;

    background-color: #212121ba;
    background-blend-mode: overlay;

    color: var(--text-light-color);
    text-align: center;
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.editorial-details-page .sales-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.editorial-details-page .sales-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
}


.editorial-details-page .sales-card .btn-free-trial {

    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 7px 20px;
    border-radius: 2.5rem;
    font-weight: bold;
    cursor: pointer;
}

.editorial-details-page .sales-card .btn-free-trial:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.editorial-details-page .latest-articles h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.editorial-details-page .latest-articles .article-listings .post-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.editorial-details-page .latest-articles .article-listings .post-item span {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 5px;
}

.editorial-details-page .latest-articles .article-listings .post-item h3 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dark-color);
}

.editorial-details-page .latest-articles .article-listings .post-item .date-time {
    font-size: 0.8rem;
    color: #6B6B6B;
}

.editorial-details-page .btn-show-more-types {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.editorial-details-page .btn-show-more-types:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.editorial-details-page button[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
}

.editorial-details-page .more-reports-card .btn-report {

    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 0.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    border: 1px solid #4854EB;
}

.editorial-details-page .more-reports-card .btn-report svg {
    width: 30px;
    height: 30px;
    background-color: #FBF6EA;
    padding: 4px;
    border-radius: 8px;
    margin-right: 10px;
}


/* Lead Popup Modal */
.leadPopupModal button.btn-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.leadPopupModal .form-card {
    border-radius: 15px;
    border: 1px solid #B6B6B6;
    background: #FFF;

    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.leadPopupModal .form-card .card-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.leadPopupModal .form-card h3.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.leadPopupModal .form-card h3.card-title span {
    color: var(--veye-purple);
}

.leadPopupModal .form-card p.card-description {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.leadPopupModal .form-card .progress-bar {
    background-color: var(--primary-color);
}

.leadPopupModal .form-card .terms-label {
    color: var(--text-dark-color);
    font-size: var(--terms-font-size);
    margin-bottom: 10px;
}

.leadPopupModal .form-card .btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

/* Input Field */
.leadPopupModal .form-card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.leadPopupModal .form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.leadPopupModal .input-box {
    position: relative;
    margin: 10px 0;
}

.leadPopupModal .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.leadPopupModal .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.leadPopupModal .input-box.focus .form-label,
.leadPopupModal .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.leadPopupModal .input-box.focus .form-label svg,
.leadPopupModal .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}


/* Sector Specific */
.sector-specific-page .heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 15px;
}

.sector-specific-page .sub-heading {
    font-size: 1.0rem;
    color: var(--text-dark-color);
    margin-bottom: 30px;
}

.sector-specific-page .card {
    border: 1px solid #C4C4C4;
    border-radius: 0.5rem;
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
    margin-bottom: 20px;
}

.sector-specific-page .sector-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.sector-specific-page .left-side {
    border-radius: 0.5rem 0 0 0.5rem;
    border-left: 1px solid #C3C3C3;
    background: #c4ffce;
}

.sector-specific-page .right-side {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
}

.sector-specific-page .right-side>div {
    border-radius: 2.5rem;
    background: #EDEDED;

    display: inline-flex;

    padding: 11px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 13px;
    flex-shrink: 0;
    margin-bottom: 20px;
    margin-right: 10px;
    text-align: center;

}

.sector-specific-page .right-side>div svg {
    width: 20px;
    height: 20px;
}

.sector-specific-page .right-side>div h5 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 0;
}

/* Past Recommendations */
.past-recommendations-page .heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 15px;
}

.past-recommendations-page .sub-heading {
    font-size: 1.0rem;
    color: var(--text-dark-color);
    margin-bottom: 30px;
}

.past-recommendations-page .disclaimer p {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin-bottom: 15px;
}


/* Veye Table */
.veye-table-card {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.veye-table-card .table-title {
    color: var(--dark-color);
    font-weight: bold;
    padding: 10px;
    border-radius: 0.5rem 0.5rem 0 0;
    font-size: 1.3rem;
}

.veye-table-card .table-header .input-box {
    position: relative;
    margin: 10px 0;
}

.veye-table-card .table-header .input-box input {
    width: 100%;
    height: 35px;
    font-size: 0.9rem;
    padding: 8px;
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    padding-right: 30px;
}

.veye-table-card .table-header .input-box input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.veye-table-card .table-header .input-box i {
    position: absolute;
    right: 7px;
    top: 7px;
    color: #80868b;
}

.veye-table-card .main-table {
    width: 100%;
    border-collapse: collapse;
}

.veye-table-card .main-table thead tr {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    color: var(--dark-color);
}

.veye-table-card .main-table thead th {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}

.veye-table-card .main-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.veye-table-card .main-table tbody tr:hover {
    background: #f9fafb;
}

.veye-table-card .main-table tr:nth-child(even) {
    background: #fafafa;
}

.veye-table-card .main-table tbody td {
    padding: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark-color);
    text-align: center;
}

/* DataTables */


/* Veye pagination */
.veye-pagination>div {
    align-items: center;
}

.veye-pagination .pagination-info {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.veye-pagination .pagination-show-entries select {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 8px;
    padding-right: 8px;
    width: 60px;
    height: 30px;
    font-size: smaller;
}

.veye-pagination .pagination-show-entries select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.veye-pagination .pagination-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.veye-pagination .pagination-nav .pagination .page-item {
    margin: 0 3px;
}

.veye-pagination .pagination-nav .pagination .page-item a {
    color: var(--text-dark-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 0.5rem;
    background-color: #F7F6FE;
    border: 1px solid #C4C4C4;
}

.veye-pagination .pagination-nav .pagination .page-item a:hover {
    background-color: #111827;
    color: #fff;
}

.veye-pagination .pagination-nav .pagination .page-item a.active {
    background-color: #111827;
    color: #fff;
    border: 1px solid #111827;
}

.veye-pagination .pagination-nav .pagination .page-item a.disabled {
    color: #B6B6B6;
    background-color: #F7F6FE;
    border: 1px solid #C4C4C4;
    cursor: not-allowed;
}

.veye-pagination .pagination-nav .pagination .page-item .page-link.link {
    border: 0;
    background: transparent;
    font-size: 0.8rem;
}

.veye-pagination .pagination-nav .pagination .page-item a.page-link.link:hover {
    color: var(--primary-color);
}

.veye-pagination .pagination-nav .pagination .page-item a.page-link.disabled:hover {
    color: #B6B6B6;
    cursor: not-allowed;
}

/* Datatable Pagintaion */
.page-link {
    color: var(--text-dark-color);
}

.page-item.active .page-link {
    background-color: #111827;
    border-color: #111827;
    color: #fff;
}


/* ─── Recommendation Pages (Buy/Sell) ─── */
.recommendation-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.recommendation-card .card-body {
    padding: 24px;
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.recommendation-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
}

.recommendation-title i {
    color: #6b7280;
}

.recommendation-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.recommendation-search .input-group {
    min-width: 260px;
}

.recommendation-search .input-group-text {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-right: none;
    color: #9ca3af;
    border-radius: 8px 0 0 8px;
}

.recommendation-search .form-control {
    border: 1px solid #d1d5db;
    border-left: none;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    padding: 8px 12px;
}

.recommendation-search .form-control:focus {
    box-shadow: none;
    border-color: #111827;
}

.recommendation-search .form-control:focus + .input-group-text,
.recommendation-search .input-group:focus-within .input-group-text {
    border-color: #111827;
}

/* Recommendation Table */
.recommendation-table {
    width: 100%;
    border-collapse: collapse;
}

.recommendation-table thead tr {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.recommendation-table thead th {
    padding: 10px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

.recommendation-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease;
}

.recommendation-table tbody tr:hover {
    background: #f9fafb;
}

.recommendation-table tbody td {
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #374151;
    text-align: center;
    white-space: nowrap;
}

.recommendation-table .company-cell {
    font-weight: 600;
    color: #111827;
    text-align: left;
}

.recommendation-table .symbol-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

/* Recommendation Badges */
.rec-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.rec-buy {
    background: #111827;
    color: #fff;
}

.rec-sell {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

/* Read More Link */
.read-more-link {
    color: #111827;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.read-more-link:hover {
    color: #374151;
    text-decoration: underline;
}

.read-more-link i {
    font-size: 0.7rem;
    margin-left: 2px;
    transition: transform 0.15s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .recommendation-header {
        flex-direction: column;
    }

    .recommendation-search .input-group {
        min-width: 100%;
    }

    .recommendation-card .card-body {
        padding: 16px;
    }

    .recommendation-table thead th,
    .recommendation-table tbody td {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}


/* ─── Subscription Page ─── */
.plan-name-cell {
    font-weight: 600;
    color: #111827;
    text-align: left !important;
    white-space: normal !important;
    min-width: 180px;
}

.plan-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin: 2px 3px 2px 0;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.amount-cell {
    font-weight: 600;
    color: #111827;
}

.sub-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.sub-active {
    background: #111827;
    color: #fff;
}

.sub-expired {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.sub-upcoming {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.sub-refunded {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sub-note {
    font-size: 0.72rem;
    color: #9ca3af;
    font-style: italic;
}

.btn-renew {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #111827;
    color: #fff;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-renew:hover {
    background: #1f2937;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-renew i {
    font-size: 0.68rem;
    transition: transform 0.15s ease;
}

.btn-renew:hover i {
    transform: translateX(3px);
}


/* Company Profile Page */
.company-profile-page .heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 30px;
}

.company-profile-page .sub-heading {
    font-size: 1.0rem;
    color: var(--text-dark-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.company-profile-page .company-description {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.company-profile-page .reports-listing .report-item {
    border-bottom: 1px solid #C4C4C4;
    padding-top: 15px;
    padding-bottom: 15px;
}

.company-profile-page .reports-listing .report-item:last-child {
    border-bottom: none;
}

.company-profile-page .reports-listing .report-item img {
    height: 110px;
    margin-right: 15px;
    max-height: 200px;
    object-fit: cover;
}

.company-profile-page .reports-listing .report-item h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 5px;
}

.company-profile-page .reports-listing .report-item span {
    font-size: 0.7rem;
    color: var(--text-dark-color);
    display: block;
}

.company-profile-page .reports-listing .report-item .read-more {
    font-size: 0.9rem;
    color: var(--veye-green);
    text-decoration: none;
    cursor: pointer;
    margin-top: auto;
    display: block;
}


.company-profile-page .latest-articles h2 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-profile-page .latest-articles .article-listings .post-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.company-profile-page .latest-articles .article-listings .post-item span {
    font-size: 0.7rem;
    color: var(--text-dark-color);
    margin-bottom: 5px;
}

.company-profile-page .latest-articles .article-listings .post-item h3 {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.company-profile-page .latest-articles .article-listings .post-item .date-time {
    font-size: 0.7rem;
    color: #6B6B6B;
}

.company-profile-page .btn-show-more-types {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.company-profile-page .btn-show-more-types:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.company-profile-page button[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
}

.company-profile-page .more-reports-card .btn-report {

    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 0.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    border: 1px solid #4854EB;
}

.company-profile-page .more-reports-card .btn-report svg {
    width: 30px;
    height: 30px;
    background-color: #FBF6EA;
    padding: 4px;
    border-radius: 8px;
    margin-right: 10px;
}

/* Company Profile Advance */
.company-profile-advanced .company-info .card {
    border-radius: 15px;
    border: 1px solid #DADADA;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.company-profile-advanced .company-info .basic-info {
    padding-top: 15px;
    padding-bottom: 15px;
}

.company-profile-advanced .company-info .basic-info .label {
    font-weight: normal;
    color: #A0A5B9;
}

.company-profile-advanced .company-info .basic-info .value {
    color: var(--text-dark-color);
    font-weight: bold;
}

.company-profile-advanced .company-info .basic-info .change {
    font-weight: bold;
}

.company-profile-advanced .company-profile .company-profile-card {
    border-radius: 15px;
    border: 1px solid #DADADA;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.company-profile-advanced .company-profile .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.company-profile-advanced .company-profile .item-label {
    font-size: 0.8rem;
    font-weight: normal;
    color: #111827;
}

.company-profile-advanced .company-profile .item-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.company-profile-advanced .company-profile .top-share-holder .sub-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.company-profile-advanced .company-profile .top-share-holder .card {
    border-radius: 5px;
    border: 1px solid #DDD;
    background: rgba(236, 247, 255, 0.79);

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.company-profile-advanced .company-profile .top-share-holder .card .shareholder-name {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.company-profile-advanced .company-profile .top-share-holder .card .shareholder-address {
    font-size: 0.6rem;
    font-weight: normal;
    color: #444953;
}

.company-profile-advanced .side-info .card {
    border-radius: 15px;
    border: 1px solid #DADADA;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.company-profile-advanced .side-info .price-summary .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.company-profile-advanced .side-info .price-summary .summary-label,
.company-profile-advanced .side-info .week-high-low .summary-label {
    font-size: 0.8rem;
    font-weight: normal;
    color: #21263a;
}

.company-profile-advanced .side-info .price-summary .summary-value,
.company-profile-advanced .side-info .week-high-low .summary-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.company-profile-advanced .company-charts .card {
    border-radius: 15px;
    border: 1px solid #DADADA;
    background: #FFF;

    /* card shadow */
    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.company-profile-advanced .company-charts .veye-charts .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;

}

.company-profile-advanced .company-charts .watchlist .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;

}

.company-profile-advanced .company-charts .watchlist .lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0.07%, #FFF 50.11%);
    border-radius: 15px;
    margin-top: 40px;
}

.company-profile-advanced .sub-heading {
    font-size: 1.4rem;
}


/* Category Report Page */
.report-category-page .report-listings .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.report-category-page .report-listings .editorial-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.report-category-page .report-listings .editorial-card .editorial-details .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 8px;
}

.report-category-page .report-listings .editorial-card .editorial-details .time-date {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.report-category-page .report-listings .editorial-card .editorial-details .btns .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgb(14 111 191 / 25%);
    font-size: small;
}

.report-category-page .report-listings .editorial-card .editorial-details .btns .btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light-color);
}


.report-category-page .recent-posts h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}



.report-category-page .post-listings img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.report-category-page .post-listings .post-title {
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 8px;
}

.report-category-page .post-listings .post-desc {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.report-category-page .post-listings .btns .btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 191, 166, 0.25);
    font-size: small;
}

.report-category-page .btn-show-more-types {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 191, 166, 0.25);
}

.report-category-page .btn-show-more-types:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.report-category-page button[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
}

.report-category-page .more-reports-card .btn-report {

    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 0.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 191, 166, 0.25);
    border: 1px solid #4854EB;
}

.report-category-page .more-reports-card .btn-report svg {
    width: 30px;
    height: 30px;
    background-color: #FBF6EA;
    padding: 4px;
    border-radius: 8px;
    margin-right: 10px;
}


.report-category-page .offer-card {

    background-image: url('../images/ads/stock4.png');
    background-size: cover;
    background-position: center;

    background-color: #212121d1;
    background-blend-mode: overlay;

    color: var(--text-light-color);
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-category-page .offer-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.report-category-page .offer-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.report-category-page .offer-card .btn {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}


/* Free Trial Page */
.free-trial-content {
    background-image: url('../images/static/login-bg.jpg');
    background-size: cover;
    background-position: center;

    background-color: #F5F5F5;
    background-blend-mode: overlay;
}

.free-trial-content .left-side h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.free-trial-content .left-side h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.free-trial-content .left-side ul {
    list-style: none;
    padding: 0;
}

.free-trial-content .left-side ul li {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.free-trial-content .left-side ul li::before {
    content: "✔️";
    margin-right: 5px;
    vertical-align: middle;
}

.free-trial-content .card {
    border: solid 1px rgba(108, 106, 106, 0.65);
    border-radius: 0.5rem;
    box-shadow: 10px 10px 1px #D9D9D9;
    padding: 20px;
}

.free-trial-content .card .card-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.free-trial-content .card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
}

.free-trial-content .card .card-title span {
    color: var(--veye-purple);
}

.free-trial-content .card .card-sub-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark-color);
    margin-top: 2.5rem;
}

.free-trial-content .card .card-body {
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Input Field */
.free-trial-content .card .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.free-trial-content .card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.free-trial-content .input-box {
    position: relative;
    margin: 10px 0;
}

.free-trial-content .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.free-trial-content .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.free-trial-content .input-box.focus .form-label,
.free-trial-content .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.free-trial-content .input-box.focus .form-label svg,
.free-trial-content .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}


.free-trial-content .card .card-body .forgot-pass-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.free-trial-content .card .card-body .remember-me-label {
    text-decoration: none;
    font-size: 0.8rem;
}

.free-trial-content .card .card-body .terms-label {
    text-decoration: none;
    font-size: var(--terms-font-size);
}

.free-trial-content .card .btn-login {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border-radius: 0.5rem;
    padding: 10px 20px;
    font-weight: bold;
    padding-left: 4rem;
    padding-right: 4rem;
}

.free-trial-sub-section h4 {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
    text-align: center;
}


.free-trial-sub-section .left-side .card {
    background-color: var(--light-color);
    border-radius: 0.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.free-trial-sub-section .left-side .card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.free-trial-sub-section .left-side .card p {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}



/* Trending News Page */
.trending-new-page .editorial-details {
    border-radius: 10px;
    border: 1px solid #B6B6B6;
    background: #FFF;

    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.trending-new-page .editorial-details .team-veye {
    color: #000000;
    font-weight: 500;
    font-size: 0.8rem;
}

.trending-new-page .editorial-details .date-time {
    color: #6B6B6B;
    font-weight: 500;
    font-size: 0.8rem;
}

.trending-new-page .editorial-details .card-title {
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.trending-new-page .editorial-details .btn-get-report {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.trending-new-page .editorial-details .editorial-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.trending-new-page .editorial-details .editorial-content p {
    font-size: 1rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.trending-new-page .desclaimer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.trending-new-page .disclaimer p {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin-bottom: 15px;
}

.trending-new-page .form-card {
    border-radius: 15px;
    border: 1px solid #B6B6B6;
    background: #FFF;

    box-shadow: 0 2px 16px 0 rgba(72, 84, 235, 0.20);
}

.trending-new-page .form-card .card-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.trending-new-page .form-card .terms-label {
    color: var(--text-dark-color);
    font-size: var(--terms-font-size);
    margin-bottom: 10px;
}

.trending-new-page .form-card .btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}



.trending-new-page .sales-card {
    background-image: url('../images/ads/top.jpg');
    background-size: cover;
    background-position: center;

    background-color: #2121215e;
    background-blend-mode: overlay;

    color: var(--text-light-color);
    text-align: center;
    border-radius: 0.5rem;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trending-new-page .sales-card h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.trending-new-page .sales-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.trending-new-page .latest-articles h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.trending-new-page .latest-articles .article-listings .post-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.trending-new-page .latest-articles .article-listings .post-item span {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 5px;
}

.trending-new-page .latest-articles .article-listings .post-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.trending-new-page .latest-articles .article-listings .post-item .date-time {
    font-size: 0.8rem;
    color: #6B6B6B;
}

.trending-new-page .btn-show-more-types {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.trending-new-page .btn-show-more-types:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.trending-new-page button[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
}

.trending-new-page .more-reports-card .btn-report {

    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 0.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
    border: 1px solid #4854EB;
}

.trending-new-page .more-reports-card .btn-report svg {
    width: 30px;
    height: 30px;
    background-color: #FBF6EA;
    padding: 4px;
    border-radius: 8px;
    margin-right: 10px;
}

.trending-new-page .trending-news .card {
    border-radius: 4px;
    border: 0;
    background: var(--White, #FFF);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    margin-bottom: 20px;
    height: 100%;
}

.trending-new-page .trending-news .card .team-veye {
    color: #6941C6;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.trending-new-page .trending-news .card .trending-news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.trending-new-page .trending-news .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.trending-new-page .trending-news .card i {
    color: #6B6B6B;
    font-size: 0.8rem;
}

.trending-new-page .trending-news .card p {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#trending-news-carousel .owl-item {
    display: flex;
}

#trending-news-carousel .col-12 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#trending-news-carousel .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trending-new-page .carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.trending-new-page .carousel-controls a {
    display: inline-block;
    color: var(--text-light-color);
    font-size: 1.1rem;
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 30%;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
}

.trending-new-page .carousel-controls a:hover {
    color: var(--info-color);
}



/* Trending News Details Page */
.trending-news-details-page .trending-news .card {
    border-radius: 4px;
    border: 0;
    background: var(--White, #FFF);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    margin-bottom: 20px;
    height: 100%;
}

.trending-news-details-page .trending-news .card .team-veye {
    color: #6941C6;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.trending-news-details-page .trending-news .card .trending-news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.trending-news-details-page .trending-news .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.trending-news-details-page .trending-news .card i {
    color: #6B6B6B;
    font-size: 0.8rem;
}

.trending-news-details-page .trending-news .card p {
    font-size: 0.8rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trending-news-details-page .carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.trending-news-details-page .carousel-controls a {
    display: inline-block;
    color: var(--text-light-color);
    font-size: 1.5rem;
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
}

.trending-news-details-page .carousel-controls a:hover {
    color: var(--info-color);
}



/* Subscribe Page */
.subscribe-page .subscribe-items .card {
    border-radius: 18px;
    /* background-image: url(../images/static/subscribe_bg_img.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;


    background-color: #f2f9fff3;
    background-blend-mode: overlay;

    box-shadow: 5.74px 0 5.74px 0 var(--main, #08213a) inset, 0 5.74px 5.74px 0 var(--main, #0e3257) inset, -5.74px 0 5.74px 0 var(--main, #08213a) inset, 0 -6.234px 6.234px 0 var(--main, #0e3257) inset, 0 7.793px 14.027px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(31.1710205078125px);
}

.subscribe-page .subscribe-items .pricing span.tag {
    border-radius: 0px 50px 50px 0px;
    background: linear-gradient(270deg, #ffc600 0%, #fbe080 100%);
    color: #000000;
    padding: 12px 55px;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    left: -31px;
    overflow: hidden;
}

.subscribe-page .subscribe-items .pricing span.tag.offer {
    background: linear-gradient(270deg, #ff6a00 0%, #ee0979 100%);
    color: #FFFFFF;
}

.subscribe-page .subscribe-items .pricing span.tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 80%;
    height: 100%;
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 35%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.2) 65%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    border-radius: inherit;
    animation: shine 2.5s infinite linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

.subscribe-page .subscribe-items .pricing {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.subscribe-page .subscribe-items .pricing h4 {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.subscribe-page .subscribe-items .pricing h4 span {
    font-size: 1.4rem;
    color: var(--dark-color);
}

.subscribe-page .subscribe-items .pricing p {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    margin-bottom: 15px;
    text-decoration: line-through;
}

.subscribe-page .subscribe-items .pricing p span {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.subscribe-page .subscribe-items .report-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.subscribe-page .subscribe-items .report-details ul {
    list-style: none;
    padding: 0;
}

.subscribe-page .subscribe-items .report-details ul li {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.subscribe-page .subscribe-items .report-details ul li::before {
    content: "✔️";
    margin-right: 5px;
    vertical-align: middle;
}

.subscribe-page .subscribe-items .subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscribe-page .subscribe-items .subscribe .btn-subscribe {
    color: var(--text-dark-color);
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;

    border-radius: 12px;
    border-bottom: 3.117px solid #132520;
    background: linear-gradient(135deg, #F98304 0%, #FCC625 100%);
    box-shadow: 0 0 6.234px 0 #07755458 inset;
}

.subscribe-page .subscribe-items .subscribe .btn-subscribe:hover {
    background: linear-gradient(180deg, #FCC625 0%, #ecde16fd 100%), #F98304;
    box-shadow: 0 0 6.234px 0 rgba(35, 27, 153, 0.80) inset;
}


/* Dividend Screener Page */
.dividend-screener-page h1.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 20px;
}

.dividend-screener-page p.page-desc {
    font-size: 1.1rem;
    color: var(--text-dark-color);
    margin-bottom: 30px;
}


/* Report Details Page - For custom description styling */
/* .report-details-page .report-content */

.report-details-page .report-content h1 {
    font-size: 24px;
    font-weight: 600
}

.report-details-page .report-content h2 {
    font-size: 22px;
    font-weight: 600
}

.report-details-page .report-content h3 {
    font-size: 20px;
    font-weight: 600
}

.report-details-page .report-content h4 {
    font-size: 18px;
    font-weight: 600
}

.report-details-page .report-content h5 {
    font-size: 18px;
    margin-top: 16px;
    font-weight: 800;
    text-decoration: underline;
    margin-bottom: 20px
}

.report-details-page .report-content h6 {
    font-size: 14px;
    font-weight: 600
}

.report-details-page .report-content p {
    font-size: 16px;
    text-align: initial;
    line-height: 1.5
}

.report-details-page .report-content disc {
    font-size: 14px !important;
    line-height: initial;
    margin-top: 14px;
    margin-bottom: 9px;
    text-align: justify;
    line-height: 28px
}

.report-details-page .report-content img {
    max-width: 100%;
    width: 100%;
    display: block;
}

.report-details-page .report-content p strong {
    font-weight: bold !important
}

.report-details-page .report-content strong {
    font-weight: bold !important
}

.report-details-page .report-content p b {
    font-weight: bold !important
}

.report-details-page .report-content b {
    font-weight: bold !important
}


/* Watchlist Page */
.user-watchlist-page .page-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--veye-purple);
    margin-bottom: 20px;
}

.user-watchlist-page p.page-desc {
    font-size: 0.9rem;
    color: var(--text-dark-color);
    margin-bottom: 30px;
}

.user-watchlist-page .nav-tabs .nav-link {
    color: gray;
}

.user-watchlist-page .nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
}

.user-watchlist-page .nav-tabs .nav-link:hover {
    color: var(--primary-color);
}


/* Coming Soon Page */
.coming-soon-page {
    background-image: url('../images/static/gradient_bg.png');
    background-size: cover;
    background-position: center;

    background-color: #F5F5F5;
    background-blend-mode: overlay;
}

.coming-soon-page h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.coming-soon-page .btn-subscribe {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    border: none;
    padding: 7px 20px;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(14, 53, 191, 0.25);
}

.coming-soon-page .btn-subscribe:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.coming-soon-page .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 1.5rem;
}


/* Card Border Animation */
.editorial-details-page .form-card::before {
    content: '';
    position: absolute;
    left: 30%;
    width: 280px;
    height: 100%;
    background: linear-gradient(90deg, rgba(80, 80, 80, 1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.3) 100%);
    animation: rotate 5s linear infinite;
}

.editorial-details-page .form-card::after {
    content: '';
    position: absolute;
    background: #ffffff;
    inset: 3px;
    border-radius: 15px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
