﻿/* Content/ResearchCalls.css */

/* Content/ResearchCalls.css */



/* ---------------------------------------------------- */
/* 1. Font Family (Spoqa Han Sans Neo) */
/* ---------------------------------------------------- */
@font-face {
    font-family: 'SpoqaHanSansNeo-Light';
    src: url('fonts/SpoqaHanSansNeo-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Regular';
    src: url('fonts/SpoqaHanSansNeo-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Medium';
    src: url('fonts/SpoqaHanSansNeo-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Bold';
    src: url('fonts/SpoqaHanSansNeo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------------------------------------------------- */
/* 1. CSS VARIABLES (For easy theme and color management) */
/* ---------------------------------------------------- */
:root {
    --color-primary-blue: #003d82;
    --color-hover-blue: #002b5c;
    --color-primary-orange: #F58220;
    --color-light-orange: #fff3e0;
    --color-background-gray: #f5f5f5;
    --color-text-dark: #333;
    --color-text-mid: #9E9E9E;
    --color-border-light: #ddd;
    --color-border-lighter: #eee;
    --max-width: 1200px;
    --primary-blue: #003D7A;
    --primary-orange: #FF9933;
    --secondary-orange: #FF7722;
    --success-green: #1AB176;
    --danger-red: #E93231;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --bs-body-font-family-light: 'SpoqaHanSansNeo-Light',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-regular: 'SpoqaHanSansNeo-Regular',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-medium: 'SpoqaHanSansNeo-Medium',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-bold: 'SpoqaHanSansNeo-Bold',sans-serif,system-ui,-apple-system;
}
/* fonts */
.font-light {
    font-family: var(--bs-body-font-family-light);
    font-weight: 300;
}

.font-regular {
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

.font-medium {
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

.font-bold {
    font-family: var(--bs-body-font-family-bold) !important;
    font-weight: 700;
}
/* ---------------------------------------------------- */
/* 2. BASE & UTILITIES */
/* ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #000;
    text-decoration: none;
}
input, textarea {
    -webkit-user-select: text; /* Safari/iOS specific */
    user-select: text;
    border-radius: 73px;
    padding: 8px 12px;
}


.container {
    max-width: 87%;
    margin: 0 auto;
    padding: 0 0px;
}

.logo {
    font-size: 16px;
    flex-grow: 1;
    display: flex;
    align-items: baseline;
}


.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.header {
    background: white;
    padding: 14px 98px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .header .btn {
        padding: 5px 14px;
        border-radius: 17px;
        font-size: 13px;
    }

.btn-research-calls {
    background-color: #FFF;
    border: 1px solid #F58220 !important;
    margin: 0px 10px;
    height: 33px;
}

.btn-primary {
    background: var(--color-primary-blue);
    color: white;
}

    .btn-primary:hover {
        background: var(--color-hover-blue);
    }

.hero-banner {
    min-height:335px;
    background: #F58220 0% 0% no-repeat padding-box;
    color: white;
    text-align: center;
    padding: 59px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 29px;
}

    .hero-banner h1 {
        font-size: 72px;
        font-weight: 300;
        text-shadow: 0px 3px 10px #00000059;
        letter-spacing: 1px;
    }


    .hero-banner p {
        font-size: 23px;
        text-shadow: 0px 3px 10px #00000059;
        top: 251px;
        height: 28px;
    }

.mobile-input-form {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

    .mobile-input-form input,
    .mobile-input-form button {
        -webkit-tap-highlight-color: transparent; /* Removes the grey flash on mobile tap */
    }

.input-grouprep {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: white;
    width: 100%;
    max-width: 471px;
    margin: 0 auto;
    height: 55px;
    border: none !important; /* Forces removal of any wrapper borders */
    overflow: hidden; /* Ensures contents don't bleed out of rounded corners */
}

    .input-grouprep:focus-within {
        outline: none !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: Keep a soft shadow instead of a hard border */
    }

.country-code {
    background-color: transparent;
    color: #757575;
    padding: 12px 10px 12px 20px;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 16px;
}

.line-height-code {
    height: 23px !important;
    border-right: 1px solid #9E9E9E !important;
    opacity: 1;
    margin: 15px 0px !important;
}

.mobile-input {
    border: none !important; /* Removes default input border */
    outline: none !important; /* Removes the blue 'focus' ring */
    padding: 12px 175px 12px 15px;
    font-size: 1rem;
    flex-grow: 1;
    background-color: transparent;
}

    #mobileNumberInput:focus,
    .mobile-input:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important
    }

.start-free-trial-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #043B72;
    color: white;
    border: none !important; /* Removes button border */
    outline: none !important;
    padding: 0 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    white-space: nowrap;
}

    .start-free-trial-btn:hover {
        background-color: #003a6b;
    }

.nav-bar-container {
    margin: 30px auto;
    padding: 0px 0px 0px;
    background-color: #E0E5EE;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    height: 50px;
    width:fit-content;
}

.report-nav {
    display: flex;
    gap: 31px;
}

/* ==================== HEADER ==================== */
.main-header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



.brand-main {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-blue);
}

.brand-sub {
    color: var(--primary-orange);
    font-size: 14px;
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    background: white;
}

    .btn-outline-custom:hover {
        background-color: var(--primary-blue);
        color: white;
    }

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    color: white;
}

    .btn-primary-custom:hover {
        background-color: #002a57;
    }

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 60px 20px;
    margin: 20px 40px;
    border-radius: 15px;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: white;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.btn-search {
    padding: 15px 35px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
}

    .btn-search:hover {
        background-color: #002a57;
    }
.sidebar-menu{
    margin:0px;
}
/* ==================== FILTER SECTION ==================== */
/*.filter-section {
    padding: 30px 15px;
}*/

    .filter-section h5 {
        color: #9E9E9E;
        font-size: 13px;
        font-family: var(--bs-body-font-family-regular);
        font-weight: 400;
        margin-left: 10px;
    }

.filter-tabs {
    margin-bottom: 20px;
}

.btn-tab {
    padding: 10px 25px;
    background-color: var(--border-gray);
    border: none;
    border-radius: 20px;
    color: #666;
    margin: 0 5px;
    font-size: 14px;
}

    .btn-tab:hover {
        background-color: #d0d0d0;
    }

    .btn-tab.active {
        background-color: var(--primary-blue);
        color: white;
    }

.sub-filters {
    font-size: 14px;
}

.sub-filter {
    color: #666;
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 10px;
    border-bottom: 2px solid transparent;
}

    .sub-filter:hover {
        color: var(--primary-blue);
    }

    .sub-filter.active {
        color: var(--primary-blue);
        font-weight: 600;
        border-bottom-color: var(--primary-blue);
    }

/* ==================== CONTENT SECTION ==================== */
.content-section {
    padding: 30px 0;
}

/* ==================== SIDEBAR ==================== */
.sidebar-card {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .sidebar-card h6 {
        font-size: 14px;
        color: #333;
    }

/* ==================== STOCK CARD TABLE ==================== */
.stock-card {
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #EAEAEA;
}

    .stock-card table {
        margin: 0;
    }

    .stock-card td,
    .stock-card th {
        padding: 15px 15px 15px 20px;
        vertical-align: middle;
    }

    .stock-card th {
        background-color: #F8F8F8;
    }

.stock-percentage {
    gap: 20px !important;
}
/* Stock Header Row */
.stock-header-row {
    border-bottom: 2px solid #EAEAEA;
}

.stock-symbol {
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
}

.stock-exchange {
    font-size: 12px;
    color: #9e9e9e;
}

.stock-price {
    font-size: 16px;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
    color: #000;
    margin: 10px;
}

.price-change {
    font-size: 16px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin: 10px 3px;
}

.chart-icon {
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
}

    .chart-icon:hover {
        opacity: 1;
    }

.btn-buy {
    background-color: #1AB176;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

    .btn-buy:hover {
        background-color: #1AB176 !important;
        color: #FFFFFF !important;
    }

.btn-Sell {
    background-color: #E93231;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

    .btn-Sell:hover {
        background-color: #E93231 !important;
        color: #FFFFFF !important;
    }

.btn-Hold {
    background-color: #f58220;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

    .btn-Hold:hover {
        background-color: #f58220 !important;
        color: #FFFFFF !important;
    }/* Stock Details Row */
/*.stock-details-row {
    border-bottom: 1px solid var(--border-gray);
}*/

.status-badge {
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 15px;
    display: inline-block;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

.status-close {
    background-color: #F8D3B4;
    color: #4D4D4D;
}

.status-open {
    background-color: #D5FAF0;
    color: #4D4D4D;
}

.detail-label {
    font-size: 12px;
    color: #9E9E9E;
    margin-bottom: 3px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

.detail-value {
    font-size: 15px;
    color: #4D4D4D;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}

/* Stock Footer Row */
.stock-footer-row td {
    padding-top: 10px;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: 20px;
    background: #F7F7F7;
    margin: 0;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px !important;
}

.video-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .video-placeholder:hover {
        transform: scale(1.02);
        transition: transform 0.3s;
    }

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-orange);
}

.btn-watch {
    padding: 15px 40px !important;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

    .btn-watch:hover {
        background-color: var(--primary-blue);
        color: #fff;
    }

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 50px 20px;
    color: white;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 20px 30px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 13px;
        opacity: 0.8;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.7;
}

        .sidebar {
        width: 292px;
        flex-shrink: 0; /* Prevents sidebar from squishing */
        background: #F8F8F8;
        padding: 20px;
        border-radius: 7px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        border: 1px solid #eee;
        margin-top: 22px;
    }

    .filter-section {
       /* margin-bottom: 25px;*/
        display: block;
        background-color: transparent;
    }

    .filter-label {
        font-size: 13px;
        color: #9E9E9E;
        margin-bottom: 8px;
        font-family: var(--bs-body-font-family-regular);
        font-weight: 400;
    }

    .custom-select {
        border:1px solid #e0e0e0;
        width: 100%;
        padding: 10px 15px;
        border-radius: 50px;
        font-size: 14px;
        background: #fff;
        color: #444;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 15px top 50%;
        background-size: 12px auto;
    }
        .custom-select:focus {
            outline:none;
        }
.dashboard-wrapper {
    display: flex;
    width: 90%;
    gap: 25px;
    align-items: flex-start;
}

    .main-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: none !important;
        padding: 0px 30px !important;
    }

    .sub-nav {
        display: flex;
        justify-content: center;
        position: relative;
        margin-bottom: 10px;
    }

    .tab-nav {
        display: flex;
        border-bottom: 1px solid #eee;
    }

.tab {
    padding: 10px 20px;
    font-size: 15px;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
    color: #757575;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

    .tab.active {
        color: #111;
        border-bottom: 2px solid #F58220;
    }

.sort-des {
    margin-left: 20px !important;
    margin-bottom: 10px !important;
    width: 50%;
}

.sort-text {
    position: absolute;
    right: 70px;
    bottom: 8px !important;
    font-size: 13px;
    color: #9E9E9E;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin-bottom: 0px !important;
}

.sidebar-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-border-lighter);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

    .sidebar-item:hover, .sidebar-item.active {
        background: #D8E4FE;
        color: #000;
        font-weight: bold;
        border-radius: 8px;
        margin: 10px 0;
    }

.filter-icon {
    margin-top: 15px !important;
    background-color: #FFF;
    border: 2px solid #F58220 !important;
    border-radius: 7px !important;
    padding: 8px !important;
    font-size: 13px !important;
}

.filter-lock {
    width: 17.61px;
    height: 17.6px;
    float: right;
    margin-top: 3px;
}

.active-tab {
    background: #043B72;
    color: white;
}

.siderahref {
    color: #000 !important;
    text-decoration: none !important;
}

.blur-content {
    position: relative !important;
    cursor: pointer !important;
    pointer-events: auto !important; /* Ensures the row is clickable */
}

    /* Blur the children elements only */
    .blur-content > * {
        filter: blur(5px);
        pointer-events: none !important; /* Prevents text from blocking the click */
        user-select: none;
    }

    /* The Lock Icon - Fixed 30x30px */
    .blur-content::after {
        content: "";
        position: relative;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%);
        background-image: url('/Content/images/research/lock.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 9999;
        pointer-events: none; /* Allows the click to pass through to the parent .blur-content */
    }

.blur-content1 {
    position: relative !important;
    cursor: pointer !important;
    pointer-events: auto !important; /* Ensures the row is clickable */
}

    /* Blur the children elements only */
    .blur-content1 > * {
        filter: blur(5px);
        pointer-events: none !important; /* Prevents text from blocking the click */
        user-select: none;
    }

    /* The Lock Icon - Fixed 30x30px */
    .blur-content1::after {
        content: "";
        position: relative;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 30px;
        transform: translate(-50%, -50%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 9999;
        pointer-events: none; /* Allows the click to pass through to the parent .blur-content */
    }

.showtblData {
    display: none !important;
}

.fund-footer-section {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #ececec;
}

.btn-execute-order {
    background-color: transparent;
    color: #4eb996; /* The teal/green text color */
    border: 2px solid #4eb996 !important; /* Matching border color */
    font-size: 14px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-image: linear-gradient(to bottom, #ffffff, #f8f9fa); /* Slight gradient */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 5px 10px !important;
}

    .btn-execute-order:hover {
        background-color: #4eb996;
        color: #4eb996 !important;
        border-color: #4eb996;
        box-shadow: 0 4px 8px rgba(78, 185, 150, 0.2);
    }

.strategy-header {
    padding: 10px 20px;
}

#callsTableBody {
    border-bottom: 1px solid #EAEAEA;
}

.stock-card-FO th {
    background-color: white;
}

/*Date filter test css start*/
.date-input[type="date"], .date-filter-input[type="date"] {
    /* Remove problematic Android styling */
    -webkit-appearance: none !important;
    -webkit-border-radius: 0;
    appearance: none;
    /* Android-specific fixes */
    background: white;
    color: #000;
    font-size: 16px; /* Prevents zoom */
    padding: 12px;
    border-radius: 73px !important;
    min-height: 44px; /* Touch target */
}

/* Android blank fix */
input[type="date"]:invalid {
    color: #666;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
}


.date-filter-group {
    display: flex;
    align-items: end;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 0;
}

    .date-filter-group > *:last-child {
        flex-shrink: 0;
        white-space: nowrap;
    }

.date-input-wrapper {
    flex: 1;
    min-width: 0; /* Prevents flex overflow */
    padding: 0 4px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .hero-banner h1 {
        font-size: 60px;
    }

    .input-grouprep {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .sidebar {
        width: 100%;
        position: relative;
        padding: 0 !important;
    }

    .sidebarparent {
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-bar-container {
        max-width: 93% !important;
    }

    .clear-dates-btn {
        align-self: flex-start;
    }

    .hero-section {
        margin: 20px 15px;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-tab {
        margin-bottom: 10px;
    }

    .stock-card {
        background: #fff !important;
        border-radius: 8px !important;
        padding: 0px !important;
    }

        .stock-card td,
        .stock-card th {
            padding: 14px 10px 16px 8px;
            vertical-align: middle;
        }

        .stock-card th {
            background-color: #F8F8F8;
        }

    .stock-symbol {
        font-size: 18px;
    }

    .stock-price {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 20px;
        margin: 20px 70px;
    }

    .hero-banner {
        /*height: auto;*/
        padding: 50px 20px;
        width: 90% !important;
        min-height: 453px !important;
    }

        .hero-banner h1 {
            font-size: 50px;
        }

        .hero-banner p {
            font-size: 18px;
            line-height: 1.4;
        }

    .input-grouprep {
        max-width: 350px;
        height: 50px;
    }

    .start-free-trial-btn {
        font-size: 14px;
        padding: 0 15px;
    }

    .content-section {
        padding: 30px 0;
    }

    .fund-header {
        display: block !important;
    }
    /* Center the sidebar on mobile - Pawan new css added*/
    .sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center sidebar menu content */
    .sidebar-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center filter section */
    .filter-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center filter labels */
    .filter-label {
        text-align: left;
        width: 100%;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }

    /* Center the status dropdown */
    .custom-select,
    #status {
        /*margin-left: auto;*/
        margin-right: auto;
        margin-bottom: 5px !important;
    }
    .fno-card-leg {
        font-size: 14px;
    }
    /* Center date filter group if it exists */
    /*date filter group css newly created*/
    @media (max-width: 768px) {
        .header-sticky {
            position: fixed !important;
            top: 0;
            z-index: 1000;
            width: 100%;
            left: 0;
            right: 0;
        }

        /* Ensure parent containers don't interfere */
        body, html {
            overflow-x: hidden;
        }
        /* Force the parent container to use flexbox row */
        .date-filter-group {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: wrap !important;
            gap: 10px !important;
            width: 100% !important;
            margin-bottom: 0px !important;
        }

        /* Force each date wrapper to take 50% width */
        .date-input-wrapper {
            flex: 1 1 calc(50% - 5px) !important;
            max-width: calc(50% - 5px) !important;
            min-width: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 6px !important;
        }

        /* Force clear button to full width on new line */
        .clear-dates-btn {
            flex: 1 1 100% !important;
            width: 25% !important;
            max-width: 25% !important;
            margin-top: 6px !important;
            padding: 9px 32px !important;
            font-size: 13px !important;
            background-color: #f9a875 !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 20px !important;
            cursor: pointer !important;
        }

            .clear-dates-btn:disabled {
                background-color: #e0e0e0 !important;
                color: #000 !important;
                opacity: 0.6 !important;
            }

        /* Style the labels */
        .filter-label {
            font-size: 12px !important;
            font-weight: 500 !important;
            color: #999999 !important;
            margin: 0 0 4px 0 !important;
            display: block !important;
        }

        /* Style the date inputs */
        .date-filter-input {
            width: 100% !important;
            padding: 9px 12px !important;
            font-size: 13px !important;
            color: #666666 !important;
            background-color: #ffffff !important;
            border: 1px solid #d0d0d0 !important;
            border-radius: 6px !important;
            outline: none !important;
            box-sizing: border-box !important;
        }

            .date-filter-input:focus {
                border-color: #0d4f8b !important;
                box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.08) !important;
            }

        /* Remove any conflicting alignments from parent containers */
        .filter-section {
            align-items: stretch !important;
        }

        .sidebar-menu {
            align-items: stretch !important;
            padding-bottom: 20px;
        }
    }
    .btn-execute-order {
        font-size: 10px !important;
        padding: 0px 0px !important;
    }
    .strategy-header {
        padding: 5px 5px !important;
    }
    /* Extra small devices */
    @media (max-width: 575px) {
        .date-filter-group {
            gap: 8px !important;
        }

        .date-input-wrapper {
            flex: 1 1 calc(50% - 4px) !important;
            max-width: calc(50% - 4px) !important;
        }

        .date-filter-input {
            padding: 11px 17px !important;
            font-size: 12px !important;
            border-radius: 47px !important;
        }

        .filter-label {
            font-size: 11px !important;
        }

        .clear-dates-btn {
            padding: 8px 30px !important;
            font-size: 12px !important;
        }
        .fno-card-leg {
            font-size: 14px;
        }
    }
    /*.date-filter-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        display: none;
    }*/

    /* Center date input wrappers if they exist */
    /*.date-input-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }*/

    /* Center date inputs */
    /*date-input-wrapper
    .date-filter-input,
    input[type="date"] {*/
        /*margin-left: auto;*/
        /*margin-right: auto;
    }*/

    /* Center the clear button */
    /*.clear-dates-btn {
        align-self: center;
        margin-right: 0px !important;
        padding-left: 5% !important;
        margin-left: 0% !important;
    }*/

    /* Center the "For Customer" sidebar item */
    .sidebar-item {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-select {
        width: 48%;
    }

    .clear-dates-btn:disabled {
        margin-right: 0px !important;
        padding-left: 5% !important;
        margin-left: 0% !important;
        margin-bottom: 0 !important;
    }

    .pagination {
        display: none !important;
    }

    .stock-details-row,
    .single-stock-detail-row {
        display: block;
        margin: -8px 14px 14px 14px !important;
        padding: 0 14px 14px 14px !important;
        border: none !important;
        background: #FFFFFF;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

        .stock-details-row td,
        .single-stock-detail-row td {
            display: block !important;
            padding: 0 !important;
            width: 100% !important;
        }

    .filter-lock {
        width: 38.61px !important;
        height: 17.6px;
        float: right;
        margin-top: 0px !important;
    }

    .dashboard-wrapper {
        width: 100% !important;
    }

    .text-end {
        text-align: left !important;
    }
    /*new css form thead*/
    .stock-header-content {
        display: flex;
        align-items: baseline;
        gap: 10px;
        padding: 5px 0px;
        flex-wrap: nowrap;
        justify-content: space-between !important;
    }

    .stock-symbol {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        white-space: nowrap;
    }

    .stock-price {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        white-space: nowrap;
        margin: 0px !important;
    }

    .price-change {
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }

        .price-change.positive {
            color: #00a651;
        }

        .price-change.negative {
            color: #e53935;
        }

    .main-content {
        padding: 0px 5px !important;
        width: 100%;
        gap: 0px !important;
    }

    .sort-des-mf.mb-4.showtblData {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
        margin-left: 0px !important;
        text-align: left !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
        box-sizing: border-box !important;
    }

    /* Target the ratings text specifically */
    .sort-des-mf .font-regular-mf,
    .sort-des-mf div.font-regular-mf {
        display: inline-block !important;
        flex: 1 1 auto !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: 11px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
        max-width: 60% !important;
    }

    /* Target the dropdown container */
    .sort-des-mf .card-actions.dropdown.custom-report-dropdown,
    .sort-des-mf .custom-report-dropdown.sort-text-mob {
        display: inline-block !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        position: static !important;
        bottom: auto !important;
    }

    /* Remove any mb-4 margins on child elements */
    .sort-des-mf .mb-4,
    .sort-des-mf .mb-4-mob {
        margin-bottom: 0 !important;
    }

    /* Style the sort button */
    .sort-des-mf .icon-btn,
    .sort-des-mf button#btnsortby {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        white-space: nowrap !important;
        padding: 4px 8px !important;
        gap: 3px !important;
        border: none !important;
        background: none !important;
        width: auto !important;
        margin: 0 !important;
        cursor: pointer !important;
    }

        .sort-des-mf .icon-btn span,
        .sort-des-mf button#btnsortby span {
            display: inline !important;
            font-size: 11px !important;
            padding: 0 !important;
            margin: 0 !important;
        }

    /* Ensure dropdown container doesn't break line */
    .sort-des-mf #sort-options-container {
        position: absolute !important;
        right: 0 !important;
        top: 100% !important;
        z-index: 1000 !important;
    }
    /* Make the dropdown container positioned relative to button */
    .sort-des-mf .card-actions.dropdown.custom-report-dropdown,
    .sort-des-mf .custom-report-dropdown.sort-text-mob {
        position: relative !important;
    }

    /* Position the sort options container under the button */
    .sort-des-mf #sort-options-container {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        margin-top: 4px !important;
        z-index: 9999 !important;
        background-color: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        min-width: 180px !important;
        max-width: 250px !important;
    }

    /* Hide dropdown by default */
    .sort-des-mf #sort-options-container {
        display: none !important;
    }

    /* Show dropdown when parent has .show class (Bootstrap dropdown) */
    .sort-des-mf .dropdown.show #sort-options-container {
        display: block !important;
    }

    /* Alternative: Show when aria-expanded="true" */
    .sort-des-mf .icon-btn[aria-expanded="true"] ~ #sort-options-container {
        display: block !important;
    }

    /* Style the dropdown content */
    .sort-des-mf #sort-options-container > * {
        padding: 8px 12px !important;
    }

    @media (max-width: 576px) {
        .sort-des-mf #sort-options-container {
            min-width: 160px !important;
            right: 0 !important;
        }
        .sort-des-mf.mb-4.showtblData {
            gap: 6px !important;
        }

        .sort-des-mf .font-regular-mf,
        .sort-des-mf div.font-regular-mf {
            font-size: 10px !important;
            max-width: 55% !important;
        }

        .sort-des-mf .icon-btn span,
        .sort-des-mf button#btnsortby span {
            font-size: 10px !important;
        }
        .hero-title {
            font-size: 24px;
            letter-spacing: 2px;
        }

        .search-wrapper form {
            flex-direction: column;
        }

        .btn-search {
            width: 100%;
        }

        .content-section {
            padding: 30px 0;
        }

        .fund-header {
            display: block !important;
        }

        .date-filter-group {
            display: none;
        }

        .text-end {
            text-align: left !important;
        }
    }

    @media (max-width: 431px) {
        .hero-banner h1 {
            font-size: 50px;
            padding-top: 65px; 
        }

        .hero-banner {
            min-height: 400px !important; /*Pawan- 29012026*/
        }


        .hero-content h1 {
            font-size: 40px !important;
            text-align: center !important;
        }

        .hero-content p {
            font-size: 15px !important;
            text-align: center;
        }

        .input-grouprep {
            width: 100% !important; /* Forces full width within the container */
            max-width: 300px;
            height: 48px;
        }

        .hero-banner p {
            font-size: 19px;
            margin-bottom: 0px;
            height: 0px !important;
            padding-left: 60px !important;
            padding-right: 60px !important;
        }

        .btn-research-calls {
            border: 0px solid #F58220 !important;
            margin: 0px;
            height: 0px;
        }

        .header {
            padding: 14px 10px;
            gap: 0px;
        }

        .hideResRep {
            display: none !important;
        }
        /*Changes done content 21 Jan 26 form hero banner alignment and research report link -- PAwan*/
        .showResRep {
            display: block !important;
            font-size: 13px;
            text-align: right;
            padding: 3px 5px !important;
            background-color: #F6F6F6;
            background-color: #F6F6F6;
            padding-top: 75px !important; /*Pawan - 21012026*/
        }

        .hidetbldata {
            display: none !important;
        }

        .showtblData {
            display: block !important;
        }

        .mobile-input-form {
            margin-top: 135px !important;
            font-size: 14px;
            margin-right: 0px;
            margin-top: 0px !important;
            margin-bottom: 0px !important;
        }
        .errmsgalig {
            color: rgb(255, 255, 255);
            border-radius: 10px;
            padding: 8px;
            margin-bottom: 80px;
            font-size: 13px;
        
        }

        .mobile-input {
            font-size: 14px;
            padding-right: 110px;
        }

        .start-free-trial-btn {
            min-width: 100px;
            font-size: 12px;
        }

        .sidebar {
            width: 95% !important;
            margin: 0px 0px 0px 0px !important;
        }

        .sort-text {
            position: absolute;
            bottom: auto !important;
            right: auto !important;
            margin: 63px 0;
        }

        .sort-text-mob {
            right: 0px !important;
            bottom: 0px !important;
        }

        .mb-4-mob {
            margin-bottom: 0px !important;
        }

        .main-content {
            padding: 0px 5px !important;
        }

        .country-code {
            font-size: 14px;
            padding-left: 15px;
        }

        .sort-des {
            margin-left: 20px !important;
            margin-bottom: 10px !important;
            width: 50%;
        }

        .line-height-code {
            margin: 10px 0px !important;
        }

        .video-section h2 {
            font-size: 32px !important;
        }

        .filter-section {
            margin-bottom: -5px;
            overflow: hidden;
        }

        .container {
            max-width: 94%;
        }

        .menuAlign {
            margin-left: 15px;
        }

        .tab-btn {
            font-size: 13px
        }

        .report-nav {
            display: flex;
            gap: 16px;
        }



        .tab {
            padding: 8px !important;
            font-size: 12px !important;
        }

        .fund-metrics {
            grid-template-columns: repeat(2, 1fr) !important;
            padding: 15px 30px !important;
        }

        .ratings-powered {
            text-align: left !important;
        }

        .icon-btn {
            margin-right: 0px !important;
            width: 75px !important;
            padding-bottom: 20px !important;
        }

        .font-regular {
            text-align: left;
            margin-left: 0px !important;
        }

        .font-regular-mf {
            text-align: left;
            margin-left: 0px !important;
        }

        .content-section {
            padding: 0px 0;
            margin-left: 17px;
            margin-right: 17px;
        }

        .filter-icon {
            width: 55% !important;
            margin-left: 85px;
            margin-bottom: 15px;
        }

        .fund-header {
            display: block !important;
            padding: 12px 14px !important;
        }

        .dropdown-menu.show {
            position: absolute !important;
            margin-top: 32px !important;
            margin-left: 0px !important;
            width: max-content;
            transform: translate3d(-30px, 0px, 0px) !important;
            z-index: 10000;
        }

        .dropdown-menu {
            min-width: 165px !important;
        }

        .custom-bubble::before {
            left: 85% !important;
        }

        .custom-bubble::after {
            left: 85% !important;
        }

        .filter-icon {
            width: 96% !important;
            margin-left: 0px !important;
            margin-bottom: 15px;
        }

        .pagination {
            display: none !important;
        }

        .date-filter-group {
            display: none;
        }

        .filter-lock {
            width: 38.61px !important;
            height: 17.6px;
            float: right;
            margin-top: 0px !important;
        }

        .dashboard-wrapper {
            width: 100% !important;
        }

        .text-end {
            text-align: left !important;
        }
        .btn-execute-order {
            font-size: 10px !important;
            padding: 10px 10px !important;
        }
        .fno-card-leg {
            font-size: 14px;
        }
        /*Changes done on 21 jan 26 for menu alighnment --  Pawan*/
        .test-nav-container {
            width: 75% !important;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
    }

    @media (max-width: 376px) {
        .tab {
            padding: 8px !important;
            font-size: 12px !important;
        }

        .hero-banner h1 {
            font-size: 50px;
            padding-top: 50px;
        }

        .hero-banner {
            min-height: 340px !important;
            margin: 118px auto 28px !important;
        }

        .input-grouprep {
            max-width: 307px;
        }

        .start-free-trial-btn {
            min-width: 90px;
            padding: 0 10px;
        }

        .menuAlign {
            margin-left: 0px !important;
        }

        .mobile-input {
            font-size: 12px;
            padding: 5px;
            padding: 12px 110px 11px 8px;
        }

        .country-code {
            padding: 12px;
            font-size: 12px !important;
        }

        .logo img {
            width: 160px;
            height: 27px;
        }

        .content-section {
            padding: 0px 0;
        }

        .filter-icon {
            width: 98% !important;
            margin-left: 0px !important;
            margin-bottom: 0px !important;
        }

        .fund-header {
            display: block !important;
        }

        .dropdown-menu.show {
            position: absolute !important;
            margin-top: 50px !important;
            margin-right: -35px !important;
        }

        .custom-select {
            width: 53% !important;
        }

        .pagination {
            display: none !important;
        }

        .date-filter-group {
            display: none;
        }

        .dashboard-wrapper {
            width: 100% !important;
        }

        .text-end {
            text-align: left !important;
        }
        .fno-card-leg {
            font-size: 14px;
        }
        .clear-dates-btn {
            flex: 1 1 100% !important;
            width: 25% !important;
            max-width: 25% !important;
            margin-top: 6px !important;
            padding: 9px 29px !important;
            font-size: 13px !important;
            background-color: #f9a875 !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 20px !important;
            cursor: pointer !important;
        }
        /*Changes done  on 21 Jan 26 For menu alighnment -- Pawan*/
        .test-nav-container {
            width: 85% !important;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .mobile-input-form {
            margin-top: 135px !important;
            font-size: 14px;
            margin-right: 0px;
            margin-top: 80px !important;
            margin-bottom: 0px !important;
        }
    }
/*required --pawan 21012026*/
    @media (max-width: 321px) {
        .hero-banner h1 {
            font-size: 48px;
            padding-top: 45px !important; /*Pawan 21012026*/
        }

        .hero-banner p {
            font-size: 16px;
            height: 0px;
        }

        .menuAlign {
            margin-left: 0px !important;
        }

        .header .btn-primary {
            font-size: 10px !important;
            text-align: center;
            width: 118px;
        }

        .input-grouprep {
            max-width: 250px;
            height: 44px;
        }

        .start-free-trial-btn {
            font-size: 11px;
            min-width: 80px;
        }

        .mobile-input {
            font-size: 12px;
            padding: 5px;
        }

        .country-code {
            padding-left: 10px;
            font-size: 12px;
        }

        .content-section {
            padding: 0px 0;
        }

        .filter-icon {
            width: 100% !important;
            margin-left: 0px !important;
            margin-bottom: 15px;
        }

        .fund-header {
            display: block !important;
        }

        .dropdown-menu.show {
            position: absolute !important;
            margin-top: 53px !important;
            margin-left: 230px !important;
        }

        .custom-bubble {
            margin-left: 4px !important;
        }

        .custom-select {
            width: 80% !important;
        }

        .clear-dates-btn {
            margin-right: 75px !important;
        }

        .pagination {
            display: none;
        }

        .date-filter-group {
            display: none;
        }

        .dashboard-wrapper {
            width: 100% !important;
        }
        .fno-card-leg {
            font-size: 14px;
        }
        .clear-dates-btn {
            flex: 1 1 100% !important;
            width: 25% !important;
            max-width: 25% !important;
            margin-top: 6px !important;
            padding: 9px 22px !important;
            font-size: 13px !important;
            background-color: #f9a875 !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 20px !important;
            cursor: pointer !important;
        }
    }
    /* ========================================
   RESPONSIVE ENHANCEMENTS
   Comprehensive responsive design for all devices
   ======================================== */

    /* ---------------------------------------------------- */
    /* BASE RESPONSIVE UTILITIES */
    /* ---------------------------------------------------- */

    /* Ensure images are responsive by default */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Responsive container adjustments */
    @media (max-width: 1400px) {
        .container {
            max-width: 92%;
        }
    }

    /* ---------------------------------------------------- */
    /* EXTRA LARGE DEVICES (1200px - 1399px) */
    /* ---------------------------------------------------- */
    @media (max-width: 1399px) and (min-width: 1200px) {
        .hero-banner h1 {
            font-size: 68px;
        }

        .header {
            padding: 14px 60px 19px;
        }

        .input-grouprep {
            max-width: 450px;
        }
    }

    /* ---------------------------------------------------- */
    /* LARGE DEVICES (992px - 1199px) */
    /* ---------------------------------------------------- */
    @media (max-width: 1199px) and (min-width: 992px) {
        .container {
            max-width: 95%;
        }

        .header {
            padding: 14px 40px 19px;
        }

        .hero-banner {
            min-height: 300px;
            padding: 50px 30px;
        }

            .hero-banner h1 {
                font-size: 64px;
            }

            .hero-banner p {
                font-size: 22px;
            }

        .input-grouprep {
            max-width: 440px;
        }

        .sidebar {
            width: 100%;
            max-width: 280px;
        }

        .col-lg-9 {
            flex: 1;
        }

        .report-nav {
            gap: 20px;
        }

        .tab-btn {
            font-size: 13px;
            padding: 8px 16px;
        }
    }

    /* ---------------------------------------------------- */
    /* MEDIUM DEVICES - TABLETS (768px - 991px) */
    /* ---------------------------------------------------- */
    @media (max-width: 991px) and (min-width: 768px) {
        .container {
            max-width: 96%;
        }

        .header {
            padding: 14px 30px 19px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .logo {
            flex-grow: 0;
            margin-right: auto;
        }

        .btn-research-calls {
            order: 3;
            margin: 10px 5px 0;
        }

        .btn-primary {
            margin: 10px 5px 0;
        }

        .hero-banner {
            min-height: 280px;
            padding: 45px 25px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

            .hero-banner h1 {
                font-size: 56px;
            }

            .hero-banner p {
                font-size: 20px;
            }

        .mobile-input-form {
            margin-top: 30px;
        }

        .input-grouprep {
            max-width: 420px;
            height: 52px;
        }

        .start-free-trial-btn {
            font-size: 15px;
            padding: 0 20px;
        }

        .nav-bar-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .report-nav {
            gap: 15px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .tab-btn {
            font-size: 13px;
            padding: 8px 14px;
        }

        /* Sidebar and content layout for tablets */
        .row.d-flex {
            flex-direction: column;
            gap: 20px !important;
        }

        .sidebar {
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .col-lg-9 {
            width: 100%;
        }

        /* Sub navigation */
        .sub-nav {
            flex-direction: column;
            align-items: stretch;
        }

        .tab-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 15px;
        }

        .sort-text {
            position: static !important;
            margin-top: 10px;
            text-align: right;
            margin-bottom: 0px !important
        }

        /* Stock cards */
        .stock-card {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .stock-symbol {
            font-size: 18px;
        }

        .stock-price {
            font-size: 16px;
        }

        .stat-number {
            font-size: 28px;
        }

        /* Video section */
        .video-section h2 {
            font-size: 36px;
        }

        /* Fund metrics */
        .fund-metrics {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 15px;
        }
    }

    /* ---------------------------------------------------- */
    /* SMALL DEVICES - MOBILE LANDSCAPE (576px - 767px) */
    /* ---------------------------------------------------- */
    @media (max-width: 767px) and (min-width: 576px) {
        .container {
            max-width: 94%;
        }

        .header {
            padding: 14px 20px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .logo img {
            width: 180px;
            height: auto;
        }

        .btn-research-calls {
            font-size: 12px;
            padding: 4px 12px;
            margin: 5px;
            height: 30px;
        }

        .header .btn-primary {
            font-size: 12px;
            padding: 4px 12px;
            margin: 5px;
        }

        .hero-banner {
            min-height: auto;
            padding: 40px 20px;
            margin: 15px auto;
            border-radius: 20px;
        }

            .hero-banner h1 {
                font-size: 48px;
                margin-bottom: 15px;
            }

            .hero-banner p {
                font-size: 18px;
                line-height: 1.4;
            }

        .mobile-input-form {
            margin-top: 25px;
        }

        .input-grouprep {
            max-width: 380px;
            height: 50px;
        }

        .mobile-input {
            font-size: 15px;
            padding: 12px 120px 12px 12px;
        }

        .start-free-trial-btn {
            font-size: 14px;
            padding: 0 18px;
        }

        .country-code {
            font-size: 15px;
            padding: 12px 8px 12px 15px;
        }

        .nav-bar-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            padding: 0 10px;
        }

        .report-nav {
            gap: 12px;
            padding: 0 5px;
        }

        .tab-btn {
            font-size: 13px;
            padding: 8px 12px;
            white-space: nowrap;
        }

        .row.d-flex {
            flex-direction: column;
            gap: 15px !important;
        }

        .sidebar {
            width: 100%;
            margin-bottom: 15px;
        }

        .col-lg-9 {
            width: 100%;
        }

        .sub-nav {
            flex-direction: column;
        }

        .tab-nav {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 10px;
        }

        .tab {
            font-size: 13px;
            padding: 10px 14px;
            white-space: nowrap;
        }

        .sort-text {
            position: static !important;
            text-align: right;
            margin-top: 10px;
        }

        .video-section h2 {
            font-size: 34px;
        }

        .fund-metrics {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
    }

    /* ---------------------------------------------------- */
    /* EXTRA SMALL DEVICES - MOBILE PORTRAIT (431px - 575px) */
    /* ---------------------------------------------------- */
    @media (max-width: 575px) and (min-width: 431px) {
        .container {
            max-width: 94%;
        }

        .header {
            padding: 14px 15px;
            gap: 8px;
        }

        .logo img {
            width: 170px;
        }

        .btn-research-calls {
            display: none !important;
        }

        .hideResRep {
            display: none !important;
        }

        .showResRep {
            display: block !important;
            font-size: 13px;
            text-align: right;
            padding: 8px 15px;
            background-color: #F6F6F6;
            margin: 0;
            padding-top: 66px !important; /*Pawan - 21012026*/
        }

        .header .btn-primary {
            font-size: 12px;
            padding: 5px 12px;
        }

        .hero-banner {
            min-height: auto;
            padding: 35px 15px;
            margin: 15px auto;
        }

        .hero-banner {
            min-height: auto !important; /*Pawan 21012026*/
            margin-top: 110px !important;
        }

            .hero-banner p {
                font-size: 16px;
                text-align: center;
                line-height: 1.5;
            }

        .mobile-input-form {
            margin-top: 25px;
        }

        .input-grouprep {
            max-width: 340px;
            height: 48px;
        }

        .mobile-input {
            font-size: 14px;
            padding: 10px 130px 10px 10px;
        }

        .start-free-trial-btn {
            min-width: 100px;
            font-size: 13px;
            padding: 0 15px;
        }

        .country-code {
            font-size: 14px;
            padding: 10px 8px 10px 12px;
        }

        .line-height-code {
            margin: 12px 0px !important;
        }

        .menuAlign {
            margin-left: 15px;
            margin-right: 15px;
        }

        .nav-bar-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            margin: 20px auto;
        }

        .report-nav {
            gap: 10px;
        }

        .tab-btn {
            font-size: 13px;
            padding: 8px 12px;
            white-space: nowrap;
        }

        .row.d-flex {
            flex-direction: column;
            gap: 15px !important;
        }

        .sidebar {
            width: 100% !important;
            margin: 0 auto 15px;
        }

        .filter-section {
            padding: 15px;
        }

        .col-lg-9 {
            width: 100%;
        }

        .main-content {
            padding: 0px 5px !important;
        }
        /*pawan 21012026*/
        .test-nav-container {
            width: 68% !important; /*Pawan - 21012026*/
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sub-nav {
            flex-direction: column;
            align-items: stretch;
        }

        .tab-nav {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 10px;
        }

        .tab {
            padding: 10px 12px !important;
            font-size: 13px !important;
            white-space: nowrap;
        }

        .sort-text {
            position: static !important;
            text-align: right;
            margin: 10px 0;
        }

        .video-section h2 {
            font-size: 32px !important;
        }

        .fund-metrics {
            grid-template-columns: repeat(2, 1fr) !important;
            padding: 15px !important;
            gap: 12px;
        }

        .ratings-powered {
            text-align: left !important;
        }

        .icon-btn {
            margin-right: 0px !important;
        }

        /* Table responsive */
        .hidetbldata {
            display: none !important;
        }

        .showtblData {
            display: block !important;
        }

        /* Stock cards scrollable */
        .stock-card {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    }

    .sidebar {
        max-width: 100%;
        overflow-x: hidden;
    }




    /* ---------------------------------------------------- */
    /* VERY SMALL DEVICES (376px - 430px) */
    /* ---------------------------------------------------- */
    @media (max-width: 430px) and (min-width: 376px) {
        .container {
            max-width: 94% !important;
        }

        .header {
            padding: 12px 10px;
            gap: 5px;
        }

        .logo img {
            width: 160px;
            height: 27px;
        }

        .btn-research-calls {
            display: none !important;
        }

        .hideResRep {
            display: none !important;
        }

        .showResRep {
            display: block !important;
            font-size: 13px;
            text-align: right;
            padding: 8px 12px;
            background-color: #F6F6F6;
            padding-top: 85px !important; /*Pawan - 21012026*/
        }

        .header .btn-primary {
            font-size: 11px;
            padding: 5px 10px;
        }

        .hero-banner {
            padding: 30px 12px;
            margin: 125px auto 28px !important;/* Pawan - 21012026*/
        }

            .hero-banner h1 {
                font-size: 50px !important;
                text-align: center !important;
                padding-top: 45px !important;
            }

            .hero-banner p {
                font-size: 20px !important;
                text-align: center;
                margin-bottom: 82px;
                height: 0px !important;
                padding-left: 75px !important;
                padding-right: 75px !important;
            }

        .mobile-input-form {
            margin-top: 25px;
        }

        .input-grouprep {
            /*width: 100% !important;*/
            max-width: 307px;
            height: 46px;
        }

        .mobile-input {
            font-size: 14px;
            padding: 8px 130px 8px 8px;
        }

        .start-free-trial-btn {
            min-width: 95px;
            font-size: 12px;
            padding: 0 12px;
        }

        .country-code {
            font-size: 14px;
            padding: 10px 6px 10px 12px;
        }

        .line-height-code {
            margin: 10px 0px !important;
        }

        .menuAlign {
            margin-left: 0px;
            margin-right: 0px;
        }

        .nav-bar-container {
            overflow-x: auto;
            margin: 15px auto;
        }

        .report-nav {
            gap: 0px;
        }

        .tab-btn {
            font-size: 13px;
            padding: 8px 12px;
        }

        .sidebar {
            width: 95% !important;
            margin: 0px 0px 0px 5px !important;
        }

        .main-content {
            padding: 0px 5px !important;
        }

        .tab {
            padding: 8px !important;
            font-size: 12px !important;
        }

        .sort-text {
            position: absolute;
            bottom: auto !important;
            right: auto !important;
            margin: 0px;
        }

        .sort-text-mob {
            right: 0px !important;
            bottom: 0px !important;
        }

        .mb-4-mob {
            margin-bottom: 0px !important;
        }

        .video-section h2 {
            font-size: 32px !important;
        }

        .fund-metrics {
            grid-template-columns: repeat(2, 1fr) !important;
            padding: 15px 20px !important;
        }

        .hidetbldata {
            display: none !important;
        }

        .showtblData {
            display: block !important;
            margin-bottom: 10px !important
        }
    }

    /* ---------------------------------------------------- */
    /* SMALLEST DEVICES (321px - 375px) */
    /* ---------------------------------------------------- */
    @media (max-width: 375px) and (min-width: 321px) {
        .container {
            max-width: 94%;
        }

        .header {
            padding: 10px 8px;
            gap: 5px;
        }

        .logo img {
            width: 160px;
            height: 27px;
        }

        .hideResRep {
            display: none !important;
        }

        .showResRep {
            display: block !important;
            font-size: 12px;
            padding: 8px 10px;
            background-color: #F6F6F6;
            padding-top: 80px !important; /*Pawan */
        }

        .header .btn-primary {
            font-size: 11px;
            padding: 5px 10px;
        }

        .hero-banner {
            padding: 30px 10px;
        }

            .hero-banner h1 {
                font-size: 50px;
                text-align: center;
            }

            .hero-banner p {
                font-size: 20px;
                text-align: center;
                height: 0px !important;
            }

        .input-grouprep {
            max-width: 290px;
            height: 44px;
        }

        .mobile-input {
            font-size: 12px;
            padding: 8px 100px 8px 8px;
        }

        .start-free-trial-btn {
            min-width: 85px;
            font-size: 11px;
            padding: 0 10px;
        }

        .country-code {
            padding: 10px 5px 10px 10px;
            font-size: 12px !important;
        }

        .menuAlign {
            margin-left: 8px;
            margin-right: 8px;
        }

        .tab-btn {
            font-size: 12px;
            padding: 7px 10px;
        }

        .sidebar {
            width: 100% !important;
        }

        .tab {
            font-size: 12px !important;
            padding: 8px !important;
        }

        .fund-metrics {
            grid-template-columns: repeat(2, 1fr) !important;
            padding: 12px 15px !important;
            gap: 10px;
        }
    }

    /* ---------------------------------------------------- */
    /* ULTRA SMALL DEVICES (Below 320px) */
    /* ---------------------------------------------------- */
    @media (max-width: 320px) {
        .container {
            max-width: 94%;
        }
        /*pawan 21012026*/
        .test-nav-container {
            width: 90% !important;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            padding: 10px 5px;
            gap: 5px;
        }

        .logo img {
            width: 150px;
            height: 25px;
        }

        .hideResRep {
            display: none !important;
        }

        .showResRep {
            display: block !important;
            font-size: 13px;
            text-align: right;
            padding: 3px 5px;
            background-color: #F6F6F6;
            background-color: #F6F6F6;
            padding-top: 60px;
        }

        .header .btn-primary {
            font-size: 8px !important;
            padding: 5px 8px;
            width: auto;
        }

        .hero-banner {
            padding: 25px 8px;
        }

            .hero-banner h1 {
                font-size: 50px;
            }

            .hero-banner p {
                font-size: 20px;
                height: 0px !important;
                padding-left: 35px !important;
                padding-right: 35px !important;
            }

        .input-grouprep {
            max-width: 307px;
            height: 42px;
        }

        .mobile-input {
            font-size: 12px;
            padding: 6px 100px 6px 6px;
        }

        .start-free-trial-btn {
            font-size: 11px;
            min-width: 75px;
            padding: 0 8px;
        }

        .country-code {
            padding-left: 8px;
            font-size: 12px;
        }

        .menuAlign {
            margin-left: 5px !important;
            margin-right: 5px !important;
        }

        .tab-btn {
            font-size: 11px;
            padding: 6px 8px;
        }

        .tab {
            font-size: 11px !important;
            padding: 6px !important;
        }
    }

    /* ---------------------------------------------------- */
    /* LANDSCAPE ORIENTATION ADJUSTMENTS */
    /* ---------------------------------------------------- */
    @media (max-height: 500px) and (orientation: landscape) {
        .hero-banner {
            min-height: auto;
            padding: 30px 20px;
        }

            .hero-banner h1 {
                font-size: 36px;
                margin-bottom: 10px;
            }

            .hero-banner p {
                font-size: 16px;
                margin-bottom: 15px;
            }

        .mobile-input-form {
            margin-top: 20px;
        }
    }

    /* ---------------------------------------------------- */
    /* TOUCH DEVICE OPTIMIZATIONS */
    /* ---------------------------------------------------- */
    @media (hover: none) and (pointer: coarse) {
        /* Increase tap targets for touch devices */
        .btn,
        .tab-btn,
        .tab,
        button {
            min-height: 30px;
            min-width: 44px;
        }

        /* Prevent text selection on tap */
        .tab-btn,
        .tab,
        .sort-text,
        .icon-btn {
            -webkit-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        /* Smooth scrolling for touch */
        .nav-bar-container,
        .tab-nav,
        .report-nav {
            scroll-behavior: smooth;
        }
    }

    /* ---------------------------------------------------- */
    /* UTILITY CLASSES FOR RESPONSIVE VISIBILITY */
    /* ---------------------------------------------------- */
    .hide-on-mobile {
        display: block;
    }

    .show-on-mobile {
        display: none;
    }

    @media (max-width: 767px) {
        .hide-on-mobile {
            display: none !important;
        }

        .show-on-mobile {
            display: block !important;
        }
    }

    /* ---------------------------------------------------- */
    /* SCROLLBAR STYLING FOR HORIZONTAL SCROLL */
    /* ---------------------------------------------------- */
    .nav-bar-container::-webkit-scrollbar,
    .tab-nav::-webkit-scrollbar,
    .stock-card::-webkit-scrollbar {
        height: 6px;
    }

    .nav-bar-container::-webkit-scrollbar-track,
    .tab-nav::-webkit-scrollbar-track,
    .stock-card::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .nav-bar-container::-webkit-scrollbar-thumb,
    .tab-nav::-webkit-scrollbar-thumb,
    .stock-card::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

        .nav-bar-container::-webkit-scrollbar-thumb:hover,
        .tab-nav::-webkit-scrollbar-thumb:hover,
        .stock-card::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    /* ---------------------------------------------------- */
    /* PRINT STYLES */
    /* ---------------------------------------------------- */
    @media print {
        .header,
        .hero-banner,
        .nav-bar-container,
        .sidebar,
        .sort-text,
        .btn {
            display: none !important;
        }

        .col-lg-9 {
            width: 100% !important;
        }

        .stock-card {
            page-break-inside: avoid;
        }
    }

    /* ---------------------------------------------------- */
    /* ACCESSIBILITY ENHANCEMENTS */
    /* ---------------------------------------------------- */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* Focus visible for keyboard navigation */
    .btn:focus-visible,
    .tab-btn:focus-visible,
    .tab:focus-visible,
    input:focus-visible,
    select:focus-visible {
        outline: 2px solid #F58220;
        outline-offset: 2px;
    }
}


/*date filteroverlapping issue*/
@media (max-width: 480px) {
    .date-filter-group {
        flex-direction: column;
        gap: 12px;
    }

    .date-input-wrapper {
        width: 100%;
    }
}
/*menu re-design changes form mobile reponsive*/

/* ============================================
   SCROLLABLE NAVIGATION CSS - TEST VERSION
   Use unique class names to avoid conflicts
   ============================================ */

/* Main container for navigation section */
@media (max-width: 768px) {
    .test-menu-wrapper {
        width: 100%;
        background-color: #ffffff;
        padding: 16px 0;
    }

    .test-nav-container {
        width: 88%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .test-horizontal-nav {
        display: flex;
        gap: 0;
        background-color: transparent;
        position: relative;
    }

    .test-nav-button {
        flex-shrink: 0;
        padding: 14px 30px;
        font-size: 15px;
        font-weight: 500;
        color: #333333;
        background-color: #e8eef5;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
        border-radius: 0;
        margin: 0;
        outline: none;
    }

        .test-nav-button:first-of-type {
            border-top-left-radius: 28px;
            border-bottom-left-radius: 28px;
            padding-left: 34px;
        }

        .test-nav-button:last-of-type {
            border-top-right-radius: 28px;
            border-bottom-right-radius: 28px;
            padding-right: 34px;
        }

        .test-nav-button.test-active-state {
            background-color: #0d4f8b;
            color: #ffffff;
            font-weight: 600;
            border-radius: 30px;
        }

        .test-nav-button:hover:not(.test-active-state) {
            background-color: #d5dfe8;
        }

    /* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

    /* Desktop view - default (992px and above) */
    @media (min-width: 992px) {
        .test-horizontal-nav {
            overflow-x: visible;
            flex-wrap: nowrap;
        }
    }

    /* Tablet view - scrollable (577px to 991px) */
    @media (min-width: 577px) and (max-width: 991px) {
        .test-nav-container {
            padding: 0 16px;
        }

        .test-horizontal-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

            .test-horizontal-nav::-webkit-scrollbar {
                display: none;
            }

        .test-nav-button {
            padding: 13px 26px;
            font-size: 14px;
        }

            .test-nav-button:first-of-type {
                padding-left: 30px;
            }

            .test-nav-button:last-of-type {
                padding-right: 30px;
            }
    }

    /* Mobile view - scrollable (up to 576px) */
    @media (max-width: 576px) {
        .test-menu-wrapper {
            padding: 12px 0;
        }

        .test-nav-container {
            padding: 0 12px;
        }

        .test-horizontal-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            justify-content: center !important;
        }

            /* Hide scrollbar for Chrome, Safari and Opera */
            .test-horizontal-nav::-webkit-scrollbar {
                display: none;
            }

        .test-nav-button {
            padding: 11px 22px;
            font-size: 13px;
        }

            .test-nav-button:first-of-type {
                padding-left: 26px;
            }

            .test-nav-button:last-of-type {
                padding-right: 26px;
            }
    }

    /* Extra small mobile devices (up to 375px) */
    @media (max-width: 375px) {
        .test-nav-button {
            padding: 10px 18px;
            font-size: 12px;
        }

            .test-nav-button:first-of-type {
                padding-left: 22px;
            }

            .test-nav-button:last-of-type {
                padding-right: 22px;
            }
    }
}
